Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 135 for notified (0.23 sec)

  1. cmd/metacache-entries.go

    // Order is preserved, but the underlying slice is modified.
    func (m *metaCacheEntriesSorted) filterObjectsOnly() {
    	dst := m.o[:0]
    	for _, o := range m.o {
    		if !o.isDir() {
    			dst = append(dst, o)
    		}
    	}
    	m.o = dst
    }
    
    // filterPrefixesOnly will remove objects.
    // Order is preserved, but the underlying slice is modified.
    func (m *metaCacheEntriesSorted) filterPrefixesOnly() {
    	dst := m.o[:0]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ImmutableSortedMultisetTest.java

          public <T> T[] toArray(T[] a) {
            toArrayCalled = true;
            return super.toArray(a);
          }
        }
    
        // Test that toArray() is used to make a defensive copy in copyOf(), so concurrently modified
        // synchronized collections can be safely copied.
        TestArrayList<String> toCopy = new TestArrayList<>();
        ImmutableSortedMultiset<String> unused =
            ImmutableSortedMultiset.copyOf(Ordering.natural(), toCopy);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. src/net/textproto/reader.go

    		"Content-Transfer-Encoding",
    		"Content-Type",
    		"Cookie",
    		"Date",
    		"Dkim-Signature",
    		"Etag",
    		"Expires",
    		"From",
    		"Host",
    		"If-Modified-Since",
    		"If-None-Match",
    		"In-Reply-To",
    		"Last-Modified",
    		"Location",
    		"Message-Id",
    		"Mime-Version",
    		"Pragma",
    		"Received",
    		"Return-Path",
    		"Server",
    		"Set-Cookie",
    		"Subject",
    		"To",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepositoryTest.groovy

        def repo = new CachingModuleComponentRepository(realRepo, caches, resolveStateFactory, cachePolicy, Stub(BuildCommencedTimeProvider), metadataProcessor, listener)
    
        def "artifact last modified date is cached - lastModified = #lastModified"() {
            given:
            def artifactId = Stub(ModuleComponentArtifactIdentifier)
            def artifact = Stub(ModuleComponentArtifactMetadata) {
                getId() >> artifactId
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/certcontroller.go

    			continue
    		}
    		s.istiodCertBundleWatcher.SetAndNotify(keyPEM, certChain, s.istiodCertBundleWatcher.GetCABundle())
    	}
    }
    
    // updateRootCertAndGenKeyCert when CA certs is updated, it generates new dns certs and notifies keycertbundle about the changes
    func (s *Server) updateRootCertAndGenKeyCert() error {
    	log.Infof("update root cert and generate new dns certs")
    	caBundle := s.CA.GetCAKeyCertBundle().GetRootCertPem()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_launch_util.cc

                             // parameters) in `resource_updates`.
                             return update.input_index == arg_num &&
                                    update.modified;
                           });
    
        const Tensor* t = is_resource_variable
                              ? resource_var_it->second
                              : &(ctx->input(arg_num - missing_ctx_input_prefix));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    include::sample[dir="snippets/dependencyManagement/customizingResolution-metadataRule/groovy",files="settings.gradle[tags=prefer-projects]"]
    ====
    
    
    [[sec:component_metadata_rules_details]]
    == Which parts of metadata can be modified?
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. istioctl/cmd/root.go

    	rootCmd.AddCommand(kubeInjectCmd)
    
    	experimentalCmd := &cobra.Command{
    		Use:     "experimental",
    		Aliases: []string{"x", "exp"},
    		Short:   "Experimental commands that may be modified or deprecated",
    	}
    
    	xdsBasedTroubleshooting := []*cobra.Command{
    		// TODO(hanxiaop): I think experimental version still has issues, so we keep the old version for now.
    		version.XdsVersionCommand(ctx),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

            file("build/output.txt").text == "input"
    
            when:
            taskSourceFile.text = defineCachedTask(" modified")
    
            cleanBuildDir()
            withBuildCache().run "customTask"
            then:
            result.assertTaskNotSkipped(":customTask")
            file("build/output.txt").text == "input modified"
        }
    
        def "cacheable task with cache disabled doesn't get cached"() {
            configureCacheForBuildSrc()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  10. cmd/object-api-datatypes.go

    }
    
    // ObjectInfo - represents object metadata.
    type ObjectInfo struct {
    	// Name of the bucket.
    	Bucket string
    
    	// Name of the object.
    	Name string
    
    	// Date and time when the object was last modified.
    	ModTime time.Time
    
    	// Total object size.
    	Size int64
    
    	// Actual size is the real size of the object uploaded by client.
    	ActualSize *int64
    
    	// IsDir indicates if the object is prefix.
    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