Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,325 for names_ (0.47 sec)

  1. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    				Names: []string{
    					"gcr.io/30:latest",
    				},
    				SizeBytes: int64(30 * mb),
    			},
    		},
    	}
    
    	node203040 := v1.NodeStatus{
    		Images: []v1.ContainerImage{
    			{
    				Names: []string{
    					"gcr.io/20:latest",
    				},
    				SizeBytes: int64(20 * mb),
    			},
    			{
    				Names: []string{
    					"gcr.io/30:latest",
    				},
    				SizeBytes: int64(30 * mb),
    			},
    			{
    				Names: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/scopes/KtCompositeScope.kt

            }
        }
    
        override fun getCallableSymbols(names: Collection<Name>): Sequence<KaCallableSymbol> = withValidityAssertion {
            if (names.isEmpty()) return emptySequence()
            sequence {
                subScopes.forEach { yieldAll(it.getCallableSymbols(names)) }
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/counter/doc.go

    // week.
    //
    // # Counter Naming
    //
    // Counter names passed to [New] and [NewStack] should follow these
    // conventions:
    //
    //   - Names cannot contain whitespace or newlines.
    //
    //   - Names must be valid unicode, with no unprintable characters.
    //
    //   - Names may contain at most one ':'. In the counter "foo:bar", we refer to
    //     "foo" as the "chart name" and "bar" as the "bucket name".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/os/dir_darwin.go

    		if dirent.Ino == 0 {
    			continue
    		}
    		name := (*[len(syscall.Dirent{}.Name)]byte)(unsafe.Pointer(&dirent.Name))[:]
    		for i, c := range name {
    			if c == 0 {
    				name = name[:i]
    				break
    			}
    		}
    		// Check for useless names before allocating a string.
    		if string(name) == "." || string(name) == ".." {
    			continue
    		}
    		if mode == readdirName {
    			names = append(names, string(name))
    		} else if mode == readdirDirEntry {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/scopes/KtFe10FileScope.kt

                        yield(ktSymbol)
                    }
                }
            }
        }
    
        override fun getCallableSymbols(names: Collection<Name>): Sequence<KaCallableSymbol> = withValidityAssertion {
            if (names.isEmpty()) return emptySequence()
            val namesSet = names.toSet()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/object_test.go

    			if err != nil {
    				t.Fatalf("%s: %s", src, err)
    			}
    
    			names := strings.Split(test.obj, ".")
    			if len(names) != 1 && len(names) != 2 {
    				t.Fatalf("%s: invalid object path %s", test.src, test.obj)
    			}
    			_, obj := pkg.Scope().LookupParent(names[0], nopos)
    			if obj == nil {
    				t.Fatalf("%s: %s not found", test.src, names[0])
    			}
    			if len(names) == 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/v1/defaults_test.go

    								Enabled: []configv1.Plugin{
    									{Name: names.SchedulingGates},
    									{Name: names.PrioritySort},
    									{Name: names.NodeUnschedulable},
    									{Name: names.NodeName},
    									{Name: names.TaintToleration, Weight: ptr.To[int32](3)},
    									{Name: names.NodeAffinity, Weight: ptr.To[int32](2)},
    									{Name: names.NodePorts},
    									{Name: names.NodeResourcesFit, Weight: ptr.To[int32](1)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/misc/DisposableUtilTest.java

            assertThat(count, is(2));
            assertThat(names, is("ab"));
            assertThat(DisposableUtil.disposables.size(), is(0));
        }
    
        /**
         *
         */
        public class TestDisposable implements Disposable {
            String name;
    
            /**
             * @param name
             */
            public TestDisposable(final String name) {
                this.name = name;
            }
    
            @Override
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/go/types/object_test.go

    			if err != nil {
    				t.Fatalf("%s: %s", src, err)
    			}
    
    			names := strings.Split(test.obj, ".")
    			if len(names) != 1 && len(names) != 2 {
    				t.Fatalf("%s: invalid object path %s", test.src, test.obj)
    			}
    			_, obj := pkg.Scope().LookupParent(names[0], nopos)
    			if obj == nil {
    				t.Fatalf("%s: %s not found", test.src, names[0])
    			}
    			if len(names) == 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. src/internal/buildcfg/exp.go

    	// and overridden at build time.
    	if goexp != "" {
    		// Create a map of known experiment names.
    		names := make(map[string]func(bool))
    		rv := reflect.ValueOf(&flags.Flags).Elem()
    		rt := rv.Type()
    		for i := 0; i < rt.NumField(); i++ {
    			field := rv.Field(i)
    			names[strings.ToLower(rt.Field(i).Name)] = field.SetBool
    		}
    
    		// "regabi" is an alias for all working regabi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:38:52 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top