Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,493 for found$ (0.14 sec)

  1. src/go/types/api.go

    	_Trace bool
    
    	// If Error != nil, it is called with each error found
    	// during type checking; err has dynamic type Error.
    	// Secondary errors (for instance, to enumerate all types
    	// involved in an invalid recursive type declaration) have
    	// error strings that start with a '\t' character.
    	// If Error == nil, type-checking stops with the first
    	// error found.
    	Error func(err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. src/internal/concurrent/hashtriemap.go

    			hashShift -= nChildrenLog2
    
    			slot = &i.children[(hash>>hashShift)&nChildrenMask]
    			n = slot.Load()
    			if n == nil {
    				// We found a nil slot which is a candidate for insertion.
    				haveInsertPoint = true
    				break
    			}
    			if n.isEntry {
    				// We found an existing entry, which is as far as we can go.
    				// If it stays this way, we'll have to replace it with an
    				// indirect node.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. pilot/pkg/model/config_test.go

    		name  string
    		port  *model.Port
    		found bool
    	}{
    		{name: pl[0].Name, port: pl[0], found: true},
    		{name: "foobar", found: false},
    	}
    
    	for _, c := range cases {
    		gotPort, gotFound := pl.Get(c.name)
    		if c.found != gotFound || !reflect.DeepEqual(gotPort, c.port) {
    			t.Errorf("Get() failed: gotFound=%v wantFound=%v\ngot %+vwant %+v",
    				gotFound, c.found, spew.Sdump(gotPort), spew.Sdump(c.port))
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 19K bytes
    - Viewed (0)
  4. cmd/kube-apiserver/app/options/validation_test.go

    			errs := validateClusterIPFlags(tc.options.Extra)
    			if len(errs) > 0 && !tc.expectErrors {
    				t.Errorf("expected no errors, errors found %+v", errs)
    			}
    
    			if len(errs) == 0 && tc.expectErrors {
    				t.Errorf("expected errors, no errors found")
    			}
    		})
    	}
    }
    
    func TestValidatePublicIPServiceClusterIPRangeIPFamilies(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    * If a `groovy-all(-indy)` Jar is found on `classpath`, that jar will be added to `groovyClasspath`.
    * If a `groovy(-indy)` jar is found on `classpath`, and the project has at least one repository declared, a corresponding `groovy(-indy)` repository dependency will be added to `groovyClasspath`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/subresources_test.go

    				t.Fatalf("unable to update status: %v", err)
    			}
    
    			specNum, found, err := unstructured.NestedInt64(updatedStatusInstance.Object, "spec", "num")
    			if !found || err != nil {
    				t.Fatalf("unable to get .spec.num")
    			}
    			if specNum != int64(10) {
    				t.Fatalf(".spec.num: expected: %v, got: %v", int64(10), specNum)
    			}
    
    			statusNum, found, err := unstructured.NestedInt64(updatedStatusInstance.Object, "status", "num")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:35:34 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         *   <li><b>Package hierarchy:</b> if a {@code module-info.class} file is found at the root,
         *       then builds a singleton map with the module name declared in that descriptor.</li>
         *   <li><b>Module hierarchy:</b> if {@code module-info.class} files are found in sub-directories,
         *       at a deep intentionally restricted to one level, then builds a map of module names found
         *       in the descriptor of each sub-directory.</li>
         * </ul>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. pilot/pkg/xds/xds_test.go

    		}
    		found = true
    	}
    	if !found {
    		t.Fatalf("failed to find tcp proxy")
    	}
    
    	found = false
    	routes := s.Routes(proxy)
    	for _, rc := range routes {
    		for _, vh := range rc.GetVirtualHosts() {
    			if vh.GetName() == "allow_any" {
    				for _, r := range vh.GetRoutes() {
    					if expectedEgressCluster == r.GetRoute().GetCluster() {
    						found = true
    						break
    					}
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/EnumTest.java

                            c.createNewFile();
                        }
                    }
    
                    String[] found = f.list();
                    Arrays.sort(found);
    
                    for ( int i = 0; i < n; i++ ) {
                        Assert.assertTrue(Arrays.binarySearch(found, String.format("%s%d.tmp", prefix, i)) >= 0);
                    }
                }
                finally {
                    f.delete();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocatorTest.groovy

        final VisualStudioLocator visualStudioLocator = new DefaultVisualStudioLocator(commandLineLocator, windowsRegistryLocator, systemPathLocator, versionDeterminer, systemInfo)
    
        def "use highest visual studio version found in the registry"() {
            def dir1 = vsDir("vs1")
            def dir2 = vsDir("vs2")
    
            given:
            1 * commandLineLocator.getVisualStudioInstalls() >> []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 25.1K bytes
    - Viewed (0)
Back to top