Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 486 for LookUp (0.29 sec)

  1. src/cmd/link/internal/ld/deadcode.go

    	}
    
    	for _, name := range names {
    		// Mark symbol as a data/ABI0 symbol.
    		d.mark(d.ldr.Lookup(name, 0), 0)
    		if abiInternalVer != 0 {
    			// Also mark any Go functions (internal ABI).
    			d.mark(d.ldr.Lookup(name, abiInternalVer), 0)
    		}
    	}
    
    	// All dynamic exports are roots.
    	for _, s := range d.ctxt.dynexp {
    		if d.ctxt.Debugvlog > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/options/authentication.go

    			"--tls-private-key-file is used. Must be specified when "+
    			"--service-account-signing-key-file is provided")
    
    		fs.BoolVar(&o.ServiceAccounts.Lookup, "service-account-lookup", o.ServiceAccounts.Lookup,
    			"If true, validate ServiceAccount tokens exist in etcd as part of authentication.")
    
    		fs.StringArrayVar(&o.ServiceAccounts.Issuers, "service-account-issuer", o.ServiceAccounts.Issuers, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/builtin.go

    	typs[107] = types.NewArray(typs[0], 3)
    	typs[108] = types.NewStruct([]*types.Field{types.NewField(src.NoXPos, Lookup("enabled"), typs[6]), types.NewField(src.NoXPos, Lookup("pad"), typs[107]), types.NewField(src.NoXPos, Lookup("cgo"), typs[6]), types.NewField(src.NoXPos, Lookup("alignme"), typs[24])})
    	typs[109] = newSig(params(typs[1], typs[3], typs[3]), nil)
    	typs[110] = newSig(params(typs[1], typs[3]), nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

                methodVisitor.visitInsn(Opcodes.DUP);
                methodVisitor.visitJumpInsn(Opcodes.IFNULL, lookup);
                methodVisitor.visitInsn(Opcodes.ARETURN);
    
                methodVisitor.visitLabel(lookup);
                methodVisitor.visitFrame(Opcodes.F_NEW, 1, new Object[]{className}, 1, new Object[]{META_CLASS_TYPE.getInternalName()});
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/cache.go

    	file, err := CachePath(ctx, module.Version{Path: path, Version: version}, "info")
    	if err != nil {
    		return nil, "", err
    	}
    	return info, file, nil
    }
    
    // GoMod is like Lookup(ctx, path).GoMod(rev) but avoids the
    // repository path resolution in Lookup if the result is
    // already cached on local disk.
    func GoMod(ctx context.Context, path, rev string) ([]byte, error) {
    	// Convert commit hash to pseudo-version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. src/runtime/sys_linux_s390x.s

    	CMPBEQ	R12, $0, nosaveg
    
    	CMPBEQ	g, R12, nosaveg
    	MOVD	(g_stack+stack_lo)(R12), R12 // g.m.gsignal.stack.lo
    	MOVD	g, (R12)
    
    	BL	R9 // to vdso lookup
    
    	MOVD	$0, (R12)
    
    	JMP	finish
    
    nosaveg:
    	BL	R9					// to vdso lookup
    
    finish:
    	MOVD	0(R15), R3		// sec
    	MOVD	8(R15), R5		// nsec
    	MOVD	R7, R15			// Restore SP
    
    	// Restore vdsoPC, vdsoSP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. plugin/pkg/admission/limitranger/admission.go

    	lister  corev1listers.LimitRangeLister
    
    	// liveLookups holds the last few live lookups we've done to help ammortize cost on repeated lookup failures.
    	// This let's us handle the case of latent caches, by looking up actual results for a namespace on cache miss/no results.
    	// We track the lookup result here so that for repeated requests, we don't look it up very often.
    	liveLookupCache *lru.Cache
    	group           singleflight.Group
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/ProjectAccessorsSourceGeneratorTest.groovy

            }
    
            void noSubAccessors() {
                assert subAccessorCount() == 0
            }
    
            private int lineOf(String lookup) {
                def lines = generatedCode.split("(\r)?\n")
                for (int i = 0; i < lines.length; i++) {
                    if (lines[i].contains(lookup)) {
                        return i + 1;
                    }
                }
                return -1;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/cadvisor_stats_provider.go

    			continue
    		}
    		// Build the Pod key if this container is managed by a Pod
    		if !isPodManagedContainer(&cinfo) {
    			continue
    		}
    		ref := buildPodRef(cinfo.Spec.Labels)
    
    		// Lookup the PodStats for the pod using the PodRef. If none exists,
    		// initialize a new entry.
    		podStats, found := podToStats[ref]
    		if !found {
    			podStats = &statsapi.PodStats{PodRef: ref}
    			podToStats[ref] = podStats
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/passes/decompose.cc

          return WalkResult::advance();
        }
    
        // Find out the compose function
        auto compose_func_name = GetComposeFuncName(op->getName().getStringRef());
        auto compose_func = table.lookup<TFRFuncOp>(compose_func_name);
        if (!compose_func || compose_func.isExternal()) {
          // There are no decomposition methods defined for this op, skip.
          return WalkResult::advance();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top