Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 83 for Enforce (0.28 sec)

  1. .bazelrc

    build:rbe_cross_compile_base_xla --strategy_regexp='Executing genrule @llvm-project.*=remote'
    
    # Test-related settings below this point
    # We cannot run cross-compiled tests on the remote Linux x86 VMs so we need to
    # force all tests to run locally on the Aarch64 host.
    test:rbe_cross_compile_base --strategy=TestRunner=local --build_tests_only
    test:rbe_cross_compile_base --verbose_failures=true --local_test_jobs=HOST_CPUS --test_output=errors
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    		close(s.internalStop)
    		_ = s.fileWatcher.Close()
    
    		if s.cacertsWatcher != nil {
    			_ = s.cacertsWatcher.Close()
    		}
    		// Stop gRPC services.  If gRPC services fail to stop in the shutdown duration,
    		// force stop them. This does not happen normally.
    		stopped := make(chan struct{})
    		go func() {
    			// Some grpcServer implementations do not support GracefulStop. Unfortunately, this is not
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/help/helpdoc.go

    does not detect changes to C libraries imported with cgo.
    If you have made changes to the C libraries on your system, you
    will need to clean the cache explicitly or else use the -a build flag
    (see 'go help build') to force rebuilding of packages that
    depend on the updated C libraries.
    
    The go command also caches successful package test results.
    See 'go help test' for details. Running 'go clean -testcache' removes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    In Gradle 8.8, this mechanism was extended to permit configuration of retention of local build cache entries, providing improved control and consistency.
    
    - Specifying `Cleanup.DISABLED` or `Cleanup.ALWAYS` will now prevent or force the cleanup of the local build cache
    - Build cache entry retention is now configured via an `init-script`, link:directory_layout.html#dir:gradle_user_home:configure_cache_cleanup[in the same manner as other caches].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. src/os/exec/exec.go

    // StdinPipe returns a pipe that will be connected to the command's
    // standard input when the command starts.
    // The pipe will be closed automatically after [Cmd.Wait] sees the command exit.
    // A caller need only call Close to force the pipe to close sooner.
    // For example, if the command being run will not exit until standard input
    // is closed, the caller must close the pipe.
    func (c *Cmd) StdinPipe() (io.WriteCloser, error) {
    	if c.Stdin != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      // when there is a rewrite failure.
      bool allow_tensorlist_pass_through_;
    
      // This flag will control the behavior of setting the batch size one when the
      // given batch size is None in order to force to proceed the tensor list op
      // lowerings.
      bool default_to_single_batch_;
    };
    
    // Converts tf.Const containing variant of type TensorList to a tensor of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    spec:
      host: '*.svc.cluster.local'
      trafficPolicy:
        connectionPool:
          http:
            maxRequestsPerConnection: 1`).ApplyOrFail(t)
    }
    
    // Relies on the suite running in a cluster with a CNI which enforces K8s netpol but presently has no check
    func TestK8sNetPol(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			t.Skip("https://github.com/istio/istio/issues/49301")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Arg<TF_Tensor, [{The concatenated tensor to write to the TensorArray.}]>:$value,
        Arg<TF_Float32Tensor, [{A float scalar that enforces proper chaining of operations.}]>:$flow_in
      );
    
      let results = (outs
        Res<TF_Float32Tensor, [{A float scalar that enforces proper chaining of operations.}]>:$flow_out
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<2>;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller.go

    		return
    	}
    	jm.orphanQueue.Add(key)
    }
    
    // worker runs a worker thread that just dequeues items, processes them, and marks them done.
    // It enforces that the syncHandler is never invoked concurrently with the same key.
    func (jm *Controller) worker(ctx context.Context) {
    	for jm.processNextWorkItem(ctx) {
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    repositories {
                        maven { url "${mavenHttpRepo.uri}" }
                    }
    
                    if ($scheduled) {
                        configurations.all {
                            // force scheduled transformation of binary artifact
                            resolutionStrategy.dependencySubstitution.all { }
                        }
                    }
    
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
Back to top