Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for unnamed1 (0.17 sec)

  1. pilot/pkg/networking/core/listener_builder_test.go

    	}{
    		{
    			name:   "permissive",
    			config: "",
    			http: map[int]bool{
    				// Should not see HTTP inspector if we declare ports
    				80: true,
    				82: true,
    				// But should see for passthrough or unnamed ports
    				81:   false,
    				1000: false,
    			},
    			tls: map[int]bool{
    				// Permissive mode: inspector is set everywhere
    				80:   false,
    				82:   false,
    				81:   false,
    				1000: false,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. src/go/types/conversions.go

    	// "V and T have identical underlying types if tags are ignored
    	// and V and T are not type parameters"
    	if IdenticalIgnoreTags(Vu, Tu) && Vp == nil && Tp == nil {
    		return true
    	}
    
    	// "V and T are unnamed pointer types and their pointer base types
    	// have identical underlying types if tags are ignored
    	// and their pointer base types are not type parameters"
    	if V, ok := V.(*Pointer); ok {
    		if T, ok := T.(*Pointer); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. src/go/types/call.go

    		var params []*Var
    		if sig.params != nil {
    			params = sig.params.vars
    		}
    		// Be consistent about named/unnamed parameters. This is not needed
    		// for type-checking, but the newly constructed signature may appear
    		// in an error message and then have mixed named/unnamed parameters.
    		// (An alternative would be to not print parameter names in errors,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    			for _, m := range asmUnnamedFP.FindAllStringSubmatch(line, -1) {
    				off, _ := strconv.Atoi(m[2])
    				v := fn.varByOffset[off]
    				if v != nil {
    					badf("use of unnamed argument %s; offset %d is %s+%d(FP)", m[1], off, v.name, v.off)
    				} else {
    					badf("use of unnamed argument %s", m[1])
    				}
    			}
    
    			for _, m := range asmNamedFP.FindAllStringSubmatch(line, -1) {
    				name := m[1]
    				off := 0
    				if m[2] != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. src/internal/coverage/cformat/format.go

    			return err
    		}
    	}
    
    	return nil
    }
    
    // EmitFuncs writes out a function-level summary to the writer 'w'. A
    // note on handling function literals: although we collect coverage
    // data for unnamed literals, it probably does not make sense to
    // include them in the function summary since there isn't any good way
    // to name them (this is also consistent with the legacy cmd/cover
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/conversions.go

    	// "V and T have identical underlying types if tags are ignored
    	// and V and T are not type parameters"
    	if IdenticalIgnoreTags(Vu, Tu) && Vp == nil && Tp == nil {
    		return true
    	}
    
    	// "V and T are unnamed pointer types and their pointer base types
    	// have identical underlying types if tags are ignored
    	// and their pointer base types are not type parameters"
    	if V, ok := V.(*Pointer); ok {
    		if T, ok := T.(*Pointer); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/call.go

    		var params []*Var
    		if sig.params != nil {
    			params = sig.params.vars
    		}
    		// Be consistent about named/unnamed parameters. This is not needed
    		// for type-checking, but the newly constructed signature may appear
    		// in an error message and then have mixed named/unnamed parameters.
    		// (An alternative would be to not print parameter names in errors,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

            @Override
            public Iterable<String> asArguments() {
                return test.getJavaVersion().isCompatibleWith(JavaVersion.VERSION_1_9)
                    ? Collections.singletonList("--add-opens=java.base/java.lang=ALL-UNNAMED")
                    : Collections.emptyList();
            }
        }
    
        private static class LocalPluginPublication implements PluginPublication {
            private final PluginDeclaration pluginDeclaration;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    	return hash
    }
    
    // shallowHash computes a hash of t without looking at any of its
    // element Types, to avoid potential anonymous cycles in the types of
    // interface methods.
    //
    // When an unnamed non-empty interface type appears anywhere among the
    // arguments or results of an interface method, there is a potential
    // for endless recursion. Consider:
    //
    //	type X interface { m() []*interface { X } }
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. pkg/registry/core/service/storage/storage_test.go

    	pods := []api.Pod{
    		makePod("unnamed", "1.2.3.4", "1.2.3.5"),
    		makePod("named", "1.2.3.6", "1.2.3.7"),
    		makePod("no-endpoints", "9.9.9.9"), // to prove this does not get chosen
    	}
    
    	endpoints := []*api.Endpoints{
    		epstest.MakeEndpoints("unnamed",
    			[]api.EndpointAddress{
    				epstest.MakeEndpointAddress("1.2.3.4", "unnamed"),
    			},
    			[]api.EndpointPort{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
Back to top