Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for unnamed1 (0.17 sec)

  1. plugin/pkg/admission/noderestriction/admission_test.go

    		},
    		{
    			name:       "forbid create of unnamed eviction for unknown pod",
    			podsGetter: noExistingPods,
    			attributes: admission.NewAttributesRecord(unnamedEviction, nil, evictionKind, coremypod.Namespace, coremypod.Name, podResource, "eviction", admission.Create, &metav1.CreateOptions{}, false, mynode),
    			err:        "not found",
    		},
    
    		// Eviction for unnamed pod
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  2. pkg/proxy/endpointschangetracker_test.go

    	}, {
    		// Case[1]: unnamed port
    		endpointsMap: EndpointsMap{
    			makeServicePortName("ns1", "ep1", "", v1.ProtocolTCP): []Endpoint{
    				&BaseEndpointInfo{ip: "1.1.1.1", port: 11, endpoint: "1.1.1.1:11", isLocal: false, ready: true, serving: true, terminating: false},
    			},
    		},
    		expected: map[types.NamespacedName]sets.Set[string]{},
    	}, {
    		// Case[2]: unnamed port local
    		endpointsMap: EndpointsMap{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/type.go

    	constant.String:  TSTRING,
    	constant.Int:     TINT,
    	constant.Float:   TFLOAT64,
    	constant.Complex: TCOMPLEX128,
    }
    
    // A Type represents a Go type.
    //
    // There may be multiple unnamed types with identical structure. However, there must
    // be a unique Type object for each unique named (defined) type. After noding, a
    // package-level type can be looked up by building its unique symbol sym (sym =
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "cannot inject shared build service without a name when multiple services exist"() {
            given:
            serviceImplementation()
            // unnamed service implies type-based lookup
            customTaskUsingServiceViaProperty("@${ServiceReference.name}")
            buildFile """
                gradle.sharedServices.registerIfAbsent("counter1", CountingService) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ```
    tasks.withType(Test).configureEach {
        jvmArgs(["--add-opens=java.base/java.lang=ALL-UNNAMED",
                 "--add-opens=java.base/java.util=ALL-UNNAMED"]
    }
    ```
    
    If you are developing Gradle plugins, `ProjectBuilder` relies on reflection in the `java.base/java.lang` module.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/xcoff.go

    	C_STAT    = 3   // Static symbol
    	C_BLOCK   = 100 // Beginning or end of inner block
    	C_FCN     = 101 // Beginning or end of function
    	C_FILE    = 103 // Source file name and compiler information
    	C_HIDEXT  = 107 // Unnamed external symbol
    	C_BINCL   = 108 // Beginning of include file
    	C_EINCL   = 109 // End of include file
    	C_WEAKEXT = 111 // Weak external symbol
    	C_DWARF   = 112 // DWARF symbol
    	C_GSYM    = 128 // Global variable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    				st.advance(1)
    				st.fail("expected closure or unnamed type")
    			}
    			c := st.str[1]
    			switch c {
    			case 'b':
    				st.advance(2)
    				st.compactNumber()
    				a = &Name{Name: "'block-literal'"}
    			case 'l':
    				a = st.closureTypeName()
    			case 't':
    				a = st.unnamedTypeName()
    			default:
    				st.advance(1)
    				st.fail("expected closure or unnamed type")
    			}
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  8. src/go/parser/parser.go

    					}
    				}
    			} else {
    				msg = "mixed named and unnamed parameters"
    			}
    			p.error(errPos, msg)
    		}
    	}
    
    	// Convert list to []*ast.Field.
    	// If list contains types only, each type gets its own ast.Field.
    	if named == 0 {
    		// parameter list consists of types only
    		for _, par := range list {
    			assert(par.typ != nil, "nil type in unnamed parameter list")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser.go

    			list = append(list, par)
    		}
    		return false
    	})
    
    	if len(list) == 0 {
    		return
    	}
    
    	// distribute parameter types (len(list) > 0)
    	if named == 0 && !requireNames {
    		// all unnamed and we're not in a type parameter list => found names are named types
    		for _, par := range list {
    			if typ := par.Name; typ != nil {
    				par.Type = typ
    				par.Name = nil
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. src/syscall/syscall_windows.go

    	}
    	// length is family (uint16), name, NUL.
    	sl := int32(2)
    	if n > 0 {
    		sl += int32(n) + 1
    	}
    	if sa.raw.Path[0] == '@' || (sa.raw.Path[0] == 0 && sl > 3) {
    		// Check sl > 3 so we don't change unnamed socket behavior.
    		sa.raw.Path[0] = 0
    		// Don't count trailing NUL for abstract address.
    		sl--
    	}
    
    	return unsafe.Pointer(&sa.raw), sl, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
Back to top