Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 81 for LookUp (0.13 sec)

  1. src/time/format.go

    				err = errBad
    				break
    			}
    			p, value = value[0:4], value[4:]
    			year, err = atoi(p)
    		case stdMonth:
    			month, value, err = lookup(shortMonthNames, value)
    			month++
    		case stdLongMonth:
    			month, value, err = lookup(longMonthNames, value)
    			month++
    		case stdNumMonth, stdZeroMonth:
    			month, value, err = getnum(value, std == stdZeroMonth)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. src/reflect/type.go

    // returned by Get is unspecified. To determine whether a tag is
    // explicitly set to the empty string, use [StructTag.Lookup].
    func (tag StructTag) Get(key string) string {
    	v, _ := tag.Lookup(key)
    	return v
    }
    
    // Lookup returns the value associated with key in the tag string.
    // If the key is present in the tag the value (which may be empty)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. cmd/batch-handlers.go

    			}
    		}
    	}
    }
    
    func lookupStyle(s string) miniogo.BucketLookupType {
    	var lookup miniogo.BucketLookupType
    	switch s {
    	case "on":
    		lookup = miniogo.BucketLookupPath
    	case "off":
    		lookup = miniogo.BucketLookupDNS
    	default:
    		lookup = miniogo.BucketLookupAuto
    
    	}
    	return lookup
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            InstantiatorFactory instantiatorFactory = services.get(InstantiatorFactory.class);
            DefaultServiceRegistry lookup = new DefaultServiceRegistry(services);
            lookup.addProvider(new ServiceRegistrationProvider() {
                @Provides
                public DependencyResolutionServices createServices() {
                    return dms.create(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        for (auto& result : results_) {
          result.second = output_permutation[result.second];
        }
    
        name = call_node_def_.op();
      }
    
      function_def_name_ = name;
    
      FunctionDef fdef;
      auto lookup = [this](const Node* node) -> std::optional<string> {
        if (control_output_nodes_.contains(node->name())) {
          return std::make_optional(node->name());
        }
        return std::nullopt;
      };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                    // We limit the inner class lookups here by using ConstructedClassWithPackage.
                    // This way only the name will change, the packagePrefix will
                    // not be included in the lookup. The case where the
                    // packagePrefix is really a class is handled elsewhere.
                    // WARNING: This code does not expect a class that has a static
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    	}
    	return pkg.mod
    }
    
    // Lookup returns the source directory, import path, and any loading error for
    // the package at path as imported from the package in parentDir.
    // Lookup requires that one of the Load functions in this package has already
    // been called.
    func Lookup(parentPath string, parentIsStd bool, path string) (dir, realPath string, err error) {
    	if path == "" {
    		panic("Lookup called with empty package path")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

        def "cannot inject shared build service without a name when multiple services exist"() {
            given:
            serviceImplementation()
            // unnamed service implies type-based lookup
            customTaskUsingServiceViaProperty("@${ServiceReference.name}")
            buildFile """
                gradle.sharedServices.registerIfAbsent("counter1", CountingService) {
                    parameters.initial = 10
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  9. src/go/printer/testdata/parser.go

    }
    
    func (p *parser) closeLabelScope() {
    	// resolve labels
    	n := len(p.targetStack) - 1
    	scope := p.labelScope
    	for _, ident := range p.targetStack[n] {
    		ident.Obj = scope.Lookup(ident.Name)
    		if ident.Obj == nil && p.mode&DeclarationErrors != 0 {
    			p.error(ident.Pos(), fmt.Sprintf("label %s undefined", ident.Name))
    		}
    	}
    	// pop label scope
    	p.targetStack = p.targetStack[0:n]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  10. pkg/workloadapi/workload.pb.go

    // Address is intended to be able to be looked up on-demand, allowing a client
    // to answer a question like "what is this IP address", similar to a reverse DNS lookup.
    //
    // Each resource will have a mesh-wide unique opaque name, defined in the individual messages.
    // In addition, to support lookup by IP address, they will have *alias* names for each IP the resource represents.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top