Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for unnamed (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. 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)
  3. 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)
  4. 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)
  5. src/cmd/compile/internal/ssa/debug.go

    		stackOffset := state.stackOffset(home)<<1 | 1
    		for _, slot := range vSlots {
    			last := locs.slots[slot]
    			if last.absent() {
    				if state.loggingLevel > 1 {
    					state.logf("at %v: unexpected spill of unnamed register %s\n", v, vReg)
    				}
    				break
    			}
    
    			setSlot(slot, VarLoc{last.Registers, StackOffset(stackOffset)})
    			if state.loggingLevel > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         */
        ProjectState getState();
    
        /**
         * <p>Creates a container for managing named objects of the specified type. The specified type must have a public constructor which takes the name as a String parameter.</p>
         *
         * <p>All objects <b>MUST</b> expose their name as a bean property named "name". The name must be constant for the life of the object.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    // while the sub-symbol names are not. For example, the Go compiler
    // emits named string symbols (type SGOSTRING) when compiling a
    // package; after being deduplicated, these symbols are collected into
    // a single unit by assigning them a new carrier symbol named
    // "go:string.*" (which appears in the final symbol table for the
    // output load module).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    			if n, err := strconv.Atoi(s[len("__cgodebug_strlen__"):]); err == nil {
    				return n
    			}
    		}
    		return -1
    	}
    
    	strs = make([]string, nnames)
    
    	strdata := make(map[int]string, nnames)
    	strlens := make(map[int]int, nnames)
    
    	buildStrings := func() {
    		for n, strlen := range strlens {
    			data := strdata[n]
    			if len(data) <= strlen {
    				fatalf("invalid string literal")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    		xexit(1)
    	}
    }
    
    func (t *tester) shouldRunTest(name string) bool {
    	if t.runRx != nil {
    		return t.runRx.MatchString(name) == t.runRxWant
    	}
    	if len(t.runNames) == 0 {
    		return true
    	}
    	for _, runName := range t.runNames {
    		if runName == name {
    			return true
    		}
    	}
    	return false
    }
    
    func (t *tester) maybeLogMetadata() error {
    	if t.compileOnly {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Now that these types implement link:{javadocPath}/org/gradle/api/Named.html[`Named`], these classes are no longer necessary and have been deprecated.
    They will be removed in Gradle 9.0.
    Use link:{javadocPath}/org/gradle/api/Named.Namer.html#INSTANCE[`Named.Namer.INSTANCE`] instead.
    
    The superinterface, link:{javadocPath}/org/gradle/api/Namer.html[`Namer`], is *not* being deprecated.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top