Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 545 for names_ (0.36 sec)

  1. pkg/test/framework/components/cluster/clusters.go

    }
    
    // GetByName returns the Cluster with the given name or nil if it is not in the list.
    func (c Clusters) GetByName(name string) Cluster {
    	for _, cc := range c {
    		if cc.Name() == name {
    			return cc
    		}
    	}
    	return nil
    }
    
    // Contains returns true if a cluster with the given name is found in the list.
    func (c Clusters) Contains(cc Cluster) bool {
    	return c.GetByName(cc.Name()) != nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            "'files=' + tree.files.name.sort()"                                                             | "files=[file1, file2]"      | "files=[file1, file2, file3]"      | "files=[file2, file3]"
            "'files=' + { def names = new TreeSet(); tree.visit { d -> names.add(d.file.name) }; names }()" | "files=[dir, file1, file2]" | "files=[dir, file1, file2, file3]" | "files=[dir, file2, file3]"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/KtFirDelegatedMemberScope.kt

            return super.getCallableSymbols(nameFilter).filter { it.origin == KaSymbolOrigin.DELEGATED }
        }
    
        override fun getCallableSymbols(names: Collection<Name>): Sequence<KaCallableSymbol> = withValidityAssertion {
            return super.getCallableSymbols(names).filter { it.origin == KaSymbolOrigin.DELEGATED }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/go/types/decl.go

    			// end of the innermost containing block."
    			scopePos := d.spec.End()
    			for i, name := range d.spec.Names {
    				check.declare(check.scope, name, lhs[i], scopePos)
    			}
    
    		case varDecl:
    			top := len(check.delayed)
    
    			lhs0 := make([]*Var, len(d.spec.Names))
    			for i, name := range d.spec.Names {
    				lhs0[i] = NewVar(name.Pos(), pkg, name.Name, nil)
    			}
    
    			// initialize all variables
    			for i, obj := range lhs0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/EffectiveClassPath.java

                    }
                }
            }
    
            // The file names passed to -cp are canonicalised by the JVM when it creates the system classloader, and so the file names are
            // lost if they happen to refer to links, for example, into the Gradle artifact cache. Try to reconstitute the file names
            // from the system classpath
            if (classLoader == ClassLoader.getSystemClassLoader()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/deadcode.go

    			} else {
    				*flagEntrySymbol = "main"
    			}
    		}
    		names = append(names, *flagEntrySymbol)
    	}
    	// runtime.unreachableMethod is a function that will throw if called.
    	// We redirect unreachable methods to it.
    	names = append(names, "runtime.unreachableMethod")
    	if d.ctxt.BuildMode == BuildModePlugin {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. scan.go

    						}
    					} else if names := utils.SplitNestedRelationName(column); len(names) > 1 { // has nested relation
    						if rel, ok := sch.Relationships.Relations[names[0]]; ok {
    							subNameCount := len(names)
    							// nested relation fields
    							relFields := make([]*schema.Field, 0, subNameCount-1)
    							relFields = append(relFields, rel.Field)
    							for _, name := range names[1 : subNameCount-1] {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. JavadocStyleGuide.md

    - Java keywords
    - package names
    - class names
    - method names
    - interface names
    - field names
    - argument names
    - code examples (see section 1.3 below)
    
    For example:
    
    ```java
    /**
     * Use the {@code Project} instance to configure the project.
     */
    ```
    
    ### 1.1.7 Block tags
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    // preserving the order passed in.
    func formatQuoted(names ...string) string {
    	quoted := make([]string, 0, len(names))
    	for _, name := range names {
    		quoted = append(quoted, fmt.Sprintf("%q", name))
    	}
    	return strings.Join(quoted, ",")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/go/doc/example.go

    func nameWithoutInst(name string) string {
    	start := strings.Index(name, "[")
    	if start < 0 {
    		return name
    	}
    	end := strings.LastIndex(name, "]")
    	if end < 0 {
    		// Malformed name, should contain closing bracket too.
    		return name
    	}
    	return name[0:start] + name[end+1:]
    }
    
    // splitExampleName attempts to split example name s at index i,
    // and reports if that produces a valid split. The suffix may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top