Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 122 for LookUp (0.11 sec)

  1. maven-compat/src/test/java/org/apache/maven/artifact/resolver/DefaultArtifactResolverTest.java

        }
    
        @Test
        void testLookup() throws Exception {
            ArtifactResolver resolver = getContainer().lookup(ArtifactResolver.class, "default");
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/RemoteScriptUpToDateChecker.kt

            if (startParameter.isOffline) {
                true
            } else {
                val externalResourceName = ExternalResourceName(uri)
    
                val cached = cachedExternalResourceIndex.lookup(externalResourceName.toString())
                val remoteMetaData = externalResourceConnector.getMetaData(externalResourceName, true)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/call_graph_util.cc

                             llvm::SmallVector<func::FuncOp> &callees) {
      for (auto attr : op->getAttrs()) {
        auto sym = mlir::dyn_cast<SymbolRefAttr>(attr.getValue());
        if (!sym) continue;
        auto callee = symtab.lookup<func::FuncOp>(sym.getRootReference());
        if (!callee) {
          // This is not expected to happen in practice.
          return op->emitError()
                 << "Cannot find function " << sym.getRootReference();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/cluster_util_test.cc

          GetMlirModuleFromString(module_with_single_cluster, &context));
      auto clusters = GetClusters(module.get());
      EXPECT_EQ(clusters.count(kTestClusterName), 1);
      EXPECT_EQ(clusters.lookup(kTestClusterName).size(), 1);
      EXPECT_EQ(clusters.lookup(kTestClusterName)[0].ops.size(), 2);
    }
    
    TEST(BuildClusters, TestMultipleClusters) {
      static const char* const module_with_two_clusters =
          R"(module {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. src/net/main_test.go

    	// non-node/interface local scope IPv4 addresses.
    	// On Windows, Lookup APIs may not return IPv4-related
    	// resource records when a node has no external IPv4
    	// connectivity.
    	testIPv4 = flag.Bool("ipv4", true, "assume external IPv4 connectivity exists")
    
    	// If external IPv6 connectivity exists, we can try dialing
    	// non-node/interface local scope IPv6 addresses.
    	// On Windows, Lookup APIs may not return IPv6-related
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/PayloadSerializerObjectInputStream.java

        }
    
        @Override
        protected Class<?> lookupClass(String type) throws ClassNotFoundException {
            try {
                return super.lookupClass(type);
            } catch (ClassNotFoundException e) {
                // lookup class in all classloaders
                for (ClassLoaderDetails details : classLoaderDetails.values()) {
                    try {
                        return map.resolveClass(details, type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases_go122.go

    	//     is just incorrect.
    	fset := token.NewFileSet()
    	f, _ := parser.ParseFile(fset, "a.go", "package p; type A = int", 0)
    	pkg, _ := new(types.Config).Check("p", fset, []*ast.File{f}, nil)
    	_, enabled := pkg.Scope().Lookup("A").Type().(*types.Alias)
    	return enabled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. src/go/types/labels.go

    	// never defined, or they are inside blocks and not reachable
    	// for the respective gotos.
    	for _, jmp := range fwdJumps {
    		var msg string
    		var code Code
    		name := jmp.Label.Name
    		if alt := all.Lookup(name); alt != nil {
    			msg = "goto %s jumps into block"
    			code = JumpIntoBlock
    			alt.(*Label).used = true // avoid another error
    		} else {
    			msg = "label %s not declared"
    			code = UndeclaredLabel
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/config/config.go

    	c.HostIPv4LoopbackCidr = constants.HostIPv4LoopbackCidr.Get()
    
    	// TODO: Make this more configurable, maybe with an allowlist of users to be captured for output instead of a denylist.
    	if c.ProxyUID == "" {
    		usr, err := user.Lookup(envoyUserVar.Get())
    		var userID string
    		// Default to the UID of ENVOY_USER
    		if err != nil {
    			userID = constants.DefaultProxyUID
    		} else {
    			userID = usr.Uid
    		}
    		c.ProxyUID = userID
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. internal/config/callhome/callhome.go

    // Update updates new callhome frequency
    func (c *Config) Update(ncfg Config) {
    	configLock.Lock()
    	defer configLock.Unlock()
    
    	c.Enable = ncfg.Enable
    	c.Frequency = ncfg.Frequency
    }
    
    // LookupConfig - lookup config and override with valid environment settings if any.
    func LookupConfig(kvs config.KVS) (cfg Config, err error) {
    	if err = config.CheckValidKeys(config.CallhomeSubSys, kvs, DefaultKVS); err != nil {
    		return cfg, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top