Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,493 for found$ (0.26 sec)

  1. pkg/wasm/convert.go

    	if envs != nil {
    		if sec, found := envs.KeyValues[model.WasmSecretEnv]; found {
    			if sec == "" {
    				*status = fetchFailure
    				return fmt.Errorf("cannot fetch Wasm module %v: missing image pulling secret", configName)
    			}
    			pullSecret = []byte(sec)
    		}
    
    		if ps, found := envs.KeyValues[model.WasmPolicyEnv]; found {
    			if p, found := PullPolicyValues[ps]; found {
    				pullPolicy = p
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/net/interface.go

    			if err != nil {
    				return nil, err
    			}
    			if memberOf(ip, family) {
    				if ip.IsGlobalUnicast() {
    					klog.V(4).Infof("IP found %v", ip)
    					return ip, nil
    				} else {
    					klog.V(4).Infof("Non-global unicast address found %v", ip)
    				}
    			} else {
    				klog.V(4).Infof("%v is not an IPv%d address", ip, int(family))
    			}
    
    		}
    	}
    	return nil, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:07:03 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  3. pkg/registry/core/service/ipallocator/bitmap_test.go

    		t.Errorf("expected free equal to 2 got: %d", f)
    	}
    	found := sets.NewString()
    	for i := 0; i < 2; i++ {
    		ip, err := r.AllocateNext()
    		if err != nil {
    			t.Fatal(err)
    		}
    		if found.Has(ip.String()) {
    			t.Fatalf("address %s has been already allocated", ip)
    		}
    		found.Insert(ip.String())
    	}
    	for s := range found {
    		if !r.Has(netutils.ParseIPSloppy(s)) {
    			t.Fatalf("missing: %s", s)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/lookup.go

    	for _, e := range list {
    		if i, found := lookupType(prev, e.typ); found {
    			list[i].multiples = true
    			// ignore this entry
    		} else {
    			prev[e.typ] = n
    			list[n] = e
    			n++
    		}
    	}
    	return list[:n]
    }
    
    func lookupType(m map[Type]int, typ Type) (int, bool) {
    	// fast path: maybe the types are equal
    	if i, found := m[typ]; found {
    		return i, true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. src/go/types/lookup.go

    	for _, e := range list {
    		if i, found := lookupType(prev, e.typ); found {
    			list[i].multiples = true
    			// ignore this entry
    		} else {
    			prev[e.typ] = n
    			list[n] = e
    			n++
    		}
    	}
    	return list[:n]
    }
    
    func lookupType(m map[Type]int, typ Type) (int, bool) {
    	// fast path: maybe the types are equal
    	if i, found := m[typ]; found {
    		return i, true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. cmd/format-erasure.go

    func loadFormatErasure(disk StorageAPI, heal bool) (format *formatErasureV3, err error) {
    	data, err := disk.ReadAll(context.TODO(), minioMetaBucket, formatConfigFile)
    	if err != nil {
    		// 'file not found' and 'volume not found' as
    		// same. 'volume not found' usually means its a fresh disk.
    		if errors.Is(err, errFileNotFound) || errors.Is(err, errVolumeNotFound) {
    			return nil, errUnformattedDisk
    		}
    		return nil, err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. pkg/kubelet/stats/cadvisor_stats_provider.go

    			continue
    		}
    		ref := buildPodRef(cinfo.Spec.Labels)
    
    		// Lookup the PodStats for the pod using the PodRef. If none exists,
    		// initialize a new entry.
    		podStats, found := podToStats[ref]
    		if !found {
    			podStats = &statsapi.PodStats{PodRef: ref}
    			podToStats[ref] = podStats
    		}
    
    		// Update the PodStats entry with the stats from the container by
    		// adding it to podStats.Containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/VisualStudioVersionDeterminerTest.groovy

            metadata.visualCppVersion == VersionNumber.parse("12.0")
            metadata.version == VersionNumber.parse("12.0")
        }
    
        def "can determine legacy metadata from installation directory when not found in command line results"() {
            def dir1 = tmpDir.createDir("dir1")
            def dir2 = tmpDir.createDir("dir2")
            def dir3 = tmpDir.createDir("dir3")
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. pilot/pkg/model/config.go

    func mostSpecificHostWildcardMatch[V any](needle string, wildcard map[host.Name]V) (host.Name, V, bool) {
    	found := false
    	var matchHost host.Name
    	var matchValue V
    
    	for h, v := range wildcard {
    		if strings.HasSuffix(needle, string(h[1:])) {
    			if !found {
    				matchHost = h
    				matchValue = wildcard[h]
    				found = true
    			} else if host.MoreSpecific(h, matchHost) {
    				matchHost = h
    				matchValue = v
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. pkg/api/v1/resource/helpers.go

    	result := v1.ResourceList{}
    	for key, value := range a {
    		if other, found := b[key]; found {
    			if value.Cmp(other) <= 0 {
    				result[key] = other.DeepCopy()
    				continue
    			}
    		}
    		result[key] = value.DeepCopy()
    	}
    	for key, value := range b {
    		if _, found := result[key]; !found {
    			result[key] = value.DeepCopy()
    		}
    	}
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 13:58:16 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top