Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,496 for found$ (0.13 sec)

  1. pilot/pkg/credentials/kube/secrets_test.go

    		},
    		{
    			name:            "generic",
    			namespace:       "wrong-namespace",
    			expectedError:   `secret wrong-namespace/generic not found`,
    			expectedCAError: `secret wrong-namespace/generic not found`,
    		},
    		{
    			name:            "empty-cert",
    			namespace:       "default",
    			expectedError:   `found keys "tls.crt" and "tls.key", but they were empty`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/extauthz.go

    	}
    
    	provider := providers[0]
    	ret, found := resolved[provider]
    	if !found {
    		var li []string
    		for p := range resolved {
    			li = append(li, p)
    		}
    		return nil, fmt.Errorf("available providers are %v but found %q", li, provider)
    	} else if ret.err != nil {
    		return nil, fmt.Errorf("found errors in provider %s: %v", provider, ret.err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_volumes.go

    	volumePaths, err := kl.getMountedVolumePathListFromDisk(podUID)
    	if err != nil {
    		klog.ErrorS(err, "Pod found, but error occurred during checking mounted volumes from disk", "podUID", podUID)
    		return true
    	}
    	if len(volumePaths) > 0 {
    		klog.V(4).InfoS("Pod found, but volumes are still mounted on disk", "podUID", podUID, "paths", volumePaths)
    		return true
    	}
    
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. src/internal/trace/summary_test.go

    	if stats.ExecTime < 0 {
    		t.Error("found negative ExecTime")
    	}
    	if stats.SchedWaitTime < 0 {
    		t.Error("found negative SchedWaitTime")
    	}
    	if stats.SyscallTime < 0 {
    		t.Error("found negative SyscallTime")
    	}
    	if stats.SyscallBlockTime < 0 {
    		t.Error("found negative SyscallBlockTime")
    	}
    	if stats.TotalTime < 0 {
    		t.Error("found negative TotalTime")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/testing/testing.go

    	case action.Matches("get", "persistentvolumes"):
    		name := action.(core.GetAction).GetName()
    		volume, found := r.volumes[name]
    		if found {
    			logger.V(4).Info("GetVolume: found volume", "volumeName", volume.Name)
    			return true, volume.DeepCopy(), nil
    		}
    		logger.V(4).Info("GetVolume: volume not found", "volumeName", name)
    		return true, nil, apierrors.NewNotFound(action.GetResource().GroupResource(), name)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf_test.go

    		"internal/abi.InterfaceType": true,
    		"internal/abi.ITab":          true,
    	}
    
    	found := findTypes(t, dwarf, want)
    	if len(found) != len(want) {
    		t.Errorf("found %v, want %v", found, want)
    	}
    }
    
    func findTypes(t *testing.T, dw *dwarf.Data, want map[string]bool) (found map[string]bool) {
    	found = make(map[string]bool)
    	rdr := dw.Reader()
    	for entry, err := rdr.Next(); entry != nil; entry, err = rdr.Next() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/objectmeta_test.go

    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	if unknown, found, err := unstructured.NestedInt64(obj.UnstructuredContent(), "metadata", "unknown"); err != nil {
    		t.Errorf("unexpected error getting metadata.unknown: %v", err)
    	} else if found {
    		t.Errorf("unexpected metadata.unknown=%#v: expected this to be pruned", unknown)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 19K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/value.go

    		return types.MaybeNoSuchOverloadErr(n), true
    	}
    	nameStr := string(n)
    	field, found := m.fieldMap[nameStr]
    	if found {
    		return field.Ref.ExprValue(), true
    	}
    	return nil, false
    }
    
    // Get returns the value for the key in the map, or error if not found.
    func (m *MapValue) Get(key ref.Val) ref.Val {
    	v, found := m.Find(key)
    	if found {
    		return v
    	}
    	return types.ValOrErr(key, "no such key: %v", key)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 20.5K bytes
    - Viewed (0)
  9. pkg/registry/core/service/ipallocator/cidrallocator_test.go

    	})
    	if err != nil {
    		t.Fatal(err)
    	}
    	found := sets.NewString()
    	count := 0
    	for r.Free() > 0 {
    		ip, err := r.AllocateNext()
    		if err != nil {
    			t.Fatalf("error @ free: %d count: %d: %v", r.Free(), count, err)
    		}
    		count++
    		if found.Has(ip.String()) {
    			t.Fatalf("allocated %s twice: %d", ip, count)
    		}
    		found.Insert(ip.String())
    	}
    	if count != 14 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/helper.go

    		StartTime: metav1.NewTime(info.Spec.CreationTime),
    		Name:      name,
    	}
    	cstat, found := latestContainerStats(info)
    	if !found {
    		return result
    	}
    
    	cpu, memory := cadvisorInfoToCPUandMemoryStats(info)
    	result.CPU = cpu
    	result.Memory = memory
    	result.Swap = cadvisorInfoToSwapStats(info)
    
    	// NOTE: if they can be found, log stats will be overwritten
    	// by the caller, as it knows more information about the pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
Back to top