Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 252 for look (0.07 sec)

  1. src/reflect/type.go

    	if variadic {
    		ft.OutCount |= 1 << 15
    	}
    
    	// Look in cache.
    	if ts, ok := funcLookupCache.m.Load(hash); ok {
    		for _, t := range ts.([]*abi.Type) {
    			if haveIdenticalUnderlyingType(&ft.Type, t, true) {
    				return toRType(t)
    			}
    		}
    	}
    
    	// Not in cache, lock and retry.
    	funcLookupCache.Lock()
    	defer funcLookupCache.Unlock()
    	if ts, ok := funcLookupCache.m.Load(hash); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    					}
    				}
    			}
    		}
    	}
    
    	// Look for Godeps.json declaring import path.
    	data, _ := os.ReadFile(filepath.Join(dir, "Godeps/Godeps.json"))
    	var cfg1 struct{ ImportPath string }
    	json.Unmarshal(data, &cfg1)
    	if cfg1.ImportPath != "" {
    		return cfg1.ImportPath, nil
    	}
    
    	// Look for vendor.json declaring import path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. src/time/format.go

    // creating a custom layout string.
    //
    // To define your own format, write down what the reference time would look like
    // formatted your way; see the values of constants like [ANSIC], [StampMicro] or
    // [Kitchen] for examples. The model is to demonstrate what the reference time
    // looks like so that the Format and Parse methods can apply the same
    // transformation to a general time value.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. istioctl/pkg/describe/describe.go

    				fmt.Fprintf(cmd.OutOrStdout(),
    					"Warning: No Kubernetes Services select pod %s (see https://istio.io/docs/setup/kubernetes/additional-setup/requirements/ )\n", // nolint: lll
    					kname(pod.ObjectMeta))
    			}
    			// TODO look for port collisions between services targeting this pod
    
    			kubeClient, err := ctx.CLIClientWithRevision(opts.Revision)
    			if err != nil {
    				return err
    			}
    
    			configClient := client.Istio()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    	for ri := 0; ri < drelocs.Count(); ri++ {
    		r := drelocs.At(ri)
    		// Look for "use type" relocs.
    		if r.Type() == objabi.R_USETYPE {
    			d.defgotype(r.Sym())
    			continue
    		}
    		if r.Type() != objabi.R_DWARFSECREF {
    			continue
    		}
    
    		rsym := r.Sym()
    		rst := d.ldr.SymType(rsym)
    
    		// Look for abstract function references.
    		if rst == sym.SDWARFABSFCN {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    When you run a task and the task is marked with `UP-TO-DATE` in the console output, this means incremental build is at work.
    
    How does an incremental build work? How can you make sure your tasks support running incrementally? Let’s take a look.
    
    [[sec:task_inputs_outputs]]
    == Task inputs and outputs
    
    In the most common case, a task takes some inputs and generates some outputs.
    We can consider the process of Java compilation as an example of a task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            ClassNode val;
            for (ClassNode classToCheck = currentClass;
                /*
                 * We know that DefaultScript & friends don't have user-visible nested types,
                 * so don't try to look up nonsensical types like org.gradle.Script#sourceCompatibility
                 */
                 classToCheck != null && classToCheck != ClassHelper.OBJECT_TYPE && !SCRIPTS_PACKAGE.equals(classToCheck.getPackageName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            cliRequest.topDirectory = topDirectory;
            // We're very early in the process, and we don't have the container set up yet,
            // so we rely on the JDK services to eventually look up a custom RootLocator.
            // This is used to compute {@code session.rootDirectory} but all {@code project.rootDirectory}
            // properties will be computed through the RootLocator found in the container.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    		//		nxt = inc + ind
    		//		goto loop
    		//
    		//	exit_loop:
    		//
    		// is rewritten to:
    		//
    		//	loop:
    		//		ind = (Phi end nxt)
    		//		if (Const [x]) < ind
    		//		then goto enter_loop
    		//		else goto exit_loop
    		//
    		//	enter_loop:
    		//		do something without using ind nor nxt
    		//		nxt = ind - inc
    		//		goto loop
    		//
    		//	exit_loop:
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse.go

    		}
    		first = false
    
    		// Look for POSIX [:alnum:] etc.
    		if len(t) > 2 && t[0] == '[' && t[1] == ':' {
    			nclass, nt, err := p.parseNamedClass(t, class)
    			if err != nil {
    				return "", err
    			}
    			if nclass != nil {
    				class, t = nclass, nt
    				continue
    			}
    		}
    
    		// Look for Unicode character group like \p{Han}.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top