Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for unnamed (0.12 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

    	// For fields that represent function parameters, Nname points to the
    	// associated ONAME Node. For fields that represent methods, Nname points to
    	// the function name node.
    	Nname Object
    
    	// Offset in bytes of this field or method within its enclosing struct
    	// or interface Type. For parameters, this is BADWIDTH.
    	Offset int64
    }
    
    const (
    	fieldIsDDD = 1 << iota // field is ... argument
    	fieldNointerface
    )
    
    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

                    maxParallelUsages = 1
                }
    
                task named(type: Consumer) {
                    // override service with an explicit assignment
                    counter.set(counterProvider2)
                    usesService(counterProvider2)
                }
            """
            enableStableConfigurationCache()
    
            when:
            succeeds 'named'
    
            then:
            outputDoesNotContain "'Task#usesService'"
    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

            attributes {
                attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_RUNTIME))
                attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.LIBRARY))
                attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements, LibraryElements.JAR))
                attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling, Bundling.EXTERNAL))
    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

    			if par.name != nil && par.typ != nil {
    				named++
    			}
    			if par.typ != nil {
    				typed++
    			}
    		}
    		if !p.atComma("parameter list", closing) {
    			break
    		}
    		p.next()
    	}
    
    	if len(list) == 0 {
    		return // not uncommon
    	}
    
    	// distribute parameter types (len(list) > 0)
    	if named == 0 {
    		// all unnamed => found names are type names
    		for i := 0; i < len(list); i++ {
    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

    				named++
    			}
    			if par.Type != nil {
    				typed++
    			}
    			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 {
    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