Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 246 for chanOf (0.28 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Many examples in this chapter use hard-coded paths as string literals.
    This makes them easy to understand, but it is not good practice.
    The problem is that paths often change, and the more places you need to change them, the more likely you will miss one and break the build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			Mode: auth.PeerAuthentication_MutualTLS_STRICT,
    		}
    	})
    	// Expect no event since the effective policy doesn't change
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.1"))[0].Address.GetWorkload().AuthorizationPolicies,
    		[]string{fmt.Sprintf("istio-system/%s", staticStrictPolicyName)})
    
    	// Change the workload policy to be permissive
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            exDependency.message == "Cannot change dependencies of dependency configuration ':conf' after it has been resolved."
    
            when:
            conf.artifacts.add(Mock(PublishArtifact))
            then:
            def exArtifact = thrown(InvalidUserDataException)
            exArtifact.message == "Cannot change artifacts of dependency configuration ':conf' after it has been resolved."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    If the stats of a file (i.e. `lastModified` and `size`) did not change, Gradle will reuse the file's fingerprint from the previous run.
    That means that Gradle does not detect changes when the stats of a file did not change.
    
    Gradle also considers the _code_ of the task as part of the inputs to the task. When a task, its actions, or its dependencies change between executions, Gradle considers the task as out-of-date.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    ```
    gradle test --continuous --tests "com.mypackage.foo.*"
    ```
    
    [[test_reporting]]
    == Test reporting
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * A change that means you should <<#rel4.8:configure_internal_tasks,configure existing `wrapper` and `init` tasks>> rather than defining your own.
     * The <<#rel4.8:pom_wildcard_exclusions,honoring of implicit wildcards in Maven POM exclusions>>, which may result in dependencies being excluded that weren't before.
     * A <<#rel4.6:annotation_processor_configuration,change to the way you add Java annotation processors to a project>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server_test.go

    		random:                       make([]byte, 32),
    		secureRenegotiationSupported: true,
    		cipherSuites:                 []uint16{TLS_RSA_WITH_RC4_128_SHA},
    	}
    
    	bufChan := make(chan []byte, 1)
    	c, s := localPipe(t)
    
    	go func() {
    		cli := Client(c, testConfig)
    		cli.vers = clientHello.vers
    		if _, err := cli.writeHandshakeRecord(clientHello, nil); err != nil {
    			testFatal(t, err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	return d.requestWatchProgressCounter
    }
    
    type dummyWatch struct {
    	ch chan watch.Event
    }
    
    func (w *dummyWatch) ResultChan() <-chan watch.Event {
    	return w.ch
    }
    
    func (w *dummyWatch) Stop() {
    	close(w.ch)
    }
    
    func newDummyWatch() watch.Interface {
    	return &dummyWatch{
    		ch: make(chan watch.Event),
    	}
    }
    
    func (d *dummyStorage) Versioner() storage.Versioner { return nil }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    [[config_cache:usage:invalidate]]
    === Invalidating the cache
    
    The configuration cache is automatically invalidated when inputs to the configuration phase change.
    However, certain inputs are not tracked yet, so you may have to manually invalidate the configuration cache when untracked inputs to the configuration phase change.
    This can happen if you <<configuration_cache#config_cache:usage:ignore_problems,ignored problems>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    	//
    	// It is computed ahead of time, at commit time. The theory is that,
    	// absent a sudden change to a parameter like gcPercent, the trigger
    	// will be chosen to always give the sweeper enough headroom. However,
    	// such a change might dramatically and suddenly move up the trigger,
    	// in which case we need to ensure the sweeper still has enough headroom.
    	sweepDistMinTrigger atomic.Uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top