Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for LookUp (0.23 sec)

  1. pkg/revisions/tag_watcher.go

    }
    
    func (p *tagWatcher) HasSynced() bool {
    	return p.queue.HasSynced()
    }
    
    func (p *tagWatcher) GetMyTags() sets.String {
    	res := sets.New(p.revision)
    	for _, wh := range p.index.Lookup(p.revision) {
    		res.Insert(wh.GetLabels()[IstioTagLabel])
    	}
    	return res
    }
    
    // notifyHandlers notifies all registered handlers on tag change.
    func (p *tagWatcher) notifyHandlers() {
    	myTags := p.GetMyTags()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.proto

    // 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
    - 12.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectModelAccessTrackingParentDynamicObject.kt

                                else location
                            }
    
                            // method lookup is more clear from the stack trace, so keep the minimal trace pointing to the location:
                            MemberKind.METHOD -> location
                        }
                    }
                    .exception()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromKotlinDslIntegrationTest.groovy

            // Requires a sub-project
            file("a/build.gradle.kts") << """
                val myProperty: $type by project
                println("myProperty: " + myProperty) // actual access to the value is required to trigger a lookup
            """
    
            when:
            isolatedProjectsFails("help")
    
            then:
            outputContains("myProperty: hello")
    
            fixture.assertStateStoredAndDiscarded {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    	splitOffset int64
    }
    
    // lookup looks up a LocalSlot in the slot canonicalizer "sc", returning
    // a canonical index for the slot, and adding it to the table if need
    // be. Return value is the canonical slot index, and a boolean indicating
    // whether the slot was found in the table already (TRUE => found).
    func (sc *slotCanonicalizer) lookup(ls LocalSlot) (SlKeyIdx, bool) {
    	split := noSlot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. cmd/iam.go

    	}
    
    	// Initialize if LDAP is enabled
    	ldapConfig, err := xldap.Lookup(s, globalRootCAs)
    	if err != nil {
    		iamLogIf(ctx, fmt.Errorf("Unable to load LDAP configuration (LDAP configuration will be disabled!): %w", err), logger.WarningKind)
    	}
    
    	stsTLSConfig, err := xtls.Lookup(s[config.IdentityTLSSubSys][config.Default])
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. pkg/kube/krt/informer.go

    	res := i.inf.List(metav1.NamespaceAll, klabels.Everything())
    	return res
    }
    
    func (i *informer[I]) GetKey(k Key[I]) *I {
    	// ns, n := splitKeyFunc(string(k))
    	// Internal optimization: we know kclient will eventually lookup "ns/name"
    	// We also have a key in this format.
    	// Rather than split and rejoin it later, just pass it as the name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 11:01:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

      {
        const auto& device = system_devices[0];
        auto host_tpu_devices = lookup(device);
        num_tpus_per_host = host_tpu_devices.size();
        tpu_devices.push_back(std::move(host_tpu_devices));
      }
    
      for (const auto& device_spec : llvm::make_range(
               std::next(system_devices.begin()), system_devices.end())) {
        auto host_tpu_devices = lookup(device_spec);
        // Check number of TPU devices per host all match.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  9. 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)
  10. cmd/object-api-datatypes.go

    	// Any metadata set during InitMultipartUpload, including encryption headers.
    	UserDefined map[string]string
    
    	// ChecksumAlgorithm if set
    	ChecksumAlgorithm string
    }
    
    // Lookup - returns if uploadID is valid
    func (lm ListMultipartsInfo) Lookup(uploadID string) bool {
    	for _, upload := range lm.Uploads {
    		if upload.UploadID == uploadID {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top