Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 884 for Forked (0.27 sec)

  1. pkg/kubelet/cm/dra/manager.go

    				}
    				pluginName := resourceHandle.DriverName
    				batches[pluginName] = append(batches[pluginName], claim)
    			}
    
    			return nil
    		})
    		if err != nil {
    			return fmt.Errorf("locked cache operation: %w", err)
    		}
    	}
    
    	// Call NodePrepareResources for all claims in each batch.
    	// If there is any error, processing gets aborted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

    LogicalResult MarkUncompilableOps(
        const Dialect* tf_dialect, Block* block,
        llvm::DenseSet<OperationName>& supported_ops) {
      // Automatically marked ops for outside compilation have
      // `_xla_outside_compilation` attribute value of "auto" plus
      // an increasing counter.  Manually marked ops for outside compilation only
      // have an increasing counteri for the attribute value.  Therefore there is no
      // collision in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

            # shellcheck disable=SC2039,SC3045
            MAX_FD=\$( ulimit -H -n ) ||
                warn "Could not query maximum file descriptor limit"
        esac
        case \$MAX_FD in  #(
          '' | soft) :;; #(
          *)
            # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
            # shellcheck disable=SC2039,SC3045
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

         *
         * TODO - this should return some kind of abstract 'action context' instead of a mutable project.
         */
        @Nullable
        public ProjectInternal getOwningProject() {
            return null;
        }
    
        /**
         * Returns the resources which should be locked before starting this node.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/UnsupportedConfigurationMutationTest.groovy

            """
    
            when: fails()
            then: failure.assertHasCause("Cannot change resolution strategy of dependency configuration ':a' after it has been resolved")
        }
    
        def "does not allow changing forced versions on a configuration that has been resolved"() {
            buildFile << """
                configurations { a }
                configurations.a.resolve()
                configurations.a.resolutionStrategy.force "org.utils:api:1.3"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. pkg/controller/controller_ref_manager_test.go

    			controller.Namespace = metav1.NamespaceDefault
    			controller.UID = types.UID(controllerUID)
    			now := metav1.Now()
    			controller.DeletionTimestamp = &now
    			return test{
    				name: "Controller marked for deletion can not claim pods",
    				manager: NewPodControllerRefManager(&FakePodControl{},
    					&controller,
    					productionLabelSelector,
    					controllerKind,
    					func(ctx context.Context) error { return nil }),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 17:19:26 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/flags.h

    struct MarkForCompilationPassFlags {
      XlaAutoJitFlag xla_auto_jit_flag;
    
      // Minimum number of operators in an XLA compilation. Ignored for operators
      // placed on an XLA device or operators explicitly marked for compilation.
      int32 tf_xla_min_cluster_size;
    
      // Maximum number of operators in an XLA compilation.
      int32 tf_xla_max_cluster_size;
    
      // If non-empty, limit XLA clustering to the following TF operations.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. operator/pkg/object/objects_test.go

    	cases := []struct {
    		name        string
    		input       string
    		failOnError bool
    		expectErr   bool
    		expectCount int
    		expectOut   bool
    	}{
    		{
    			name:        "well formed yaml, no errors",
    			input:       "well-formed",
    			failOnError: false,
    			expectErr:   false,
    			expectCount: 2,
    		},
    		{
    			name:        "malformed yaml, fail on error",
    			input:       "malformed",
    			failOnError: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. src/runtime/mranges.go

    // It also contains operations to be able to store marked addresses
    // to ensure that they're not overridden until they've been seen.
    type atomicOffAddr struct {
    	// a contains the offset address, unlike offAddr.
    	a atomic.Int64
    }
    
    // Clear attempts to store minOffAddr in atomicOffAddr. It may fail
    // if a marked value is placed in the box in the meanwhile.
    func (b *atomicOffAddr) Clear() {
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

                this
            }
    
            /**
             * Marks that this node has a forced vers.
             */
            NodeBuilder forced() {
                reasons << 'forced'
                this
            }
    
            /**
             * Marks that this node was substituted in a composite.
             */
            NodeBuilder compositeSubstitute() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
Back to top