Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 114 for cherries (0.4 sec)

  1. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

            true
        }
    
        private validate(Throwable throwable) {
            if (dist.version != GradleVersion.current()) {
                return
            }
    
            // Verify that the exception carries the calling thread's stack information
            def currentThreadStack = Thread.currentThread().stackTrace as List
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/evex.go

    	}
    	return 0, false
    }
    
    // evexZcase reports whether given Z-case belongs to EVEX group.
    func evexZcase(zcase uint8) bool {
    	return zcase > Zevex_first && zcase < Zevex_last
    }
    
    // evexSuffixBits carries instruction EVEX suffix set flags.
    //
    // Examples:
    //
    //	"RU_SAE.Z" => {rounding: 3, zeroing: true}
    //	"Z" => {zeroing: true}
    //	"BCST" => {broadcast: true}
    //	"SAE.Z" => {sae: true, zeroing: true}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

     * using the methods {@link #set(Object)} and {@link #set(Provider)}, or their fluid API counterparts
     * {@link #value(Object)} and {@link #value(Provider)}.
     *
     * <p>
     * A property may represent a task output. Such a property carries information about the task producing
     * its value. When this property is attached to an input of another task, Gradle will automatically determine
     * the task dependencies based on this connection.
     * </p>
     *
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

     * that is mutable and that changes over time.
     * </p>
     *
     * <p>
     * A provider may represent a task output. Such a provider carries information about the task producing its value. When
     * this provider is attached to an input of another task, Gradle will automatically determine the task dependencies based
     * on this connection.
     * </p>
     *
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.cc

      kUnaryOp,         // Unary ops have one min/max attr.
      kBinaryOp,        // Binary ops have lhs/rhs attr.
      kQuantizationOp,  // Quantization ops have input/output attr.
    };
    
    // For each op type, the following axis carries axis information:
    // kDynamicRangeOp: rhs_quantization_axis will carry axis information.
    // kUnaryOp: quantization_axis will carry axis information.
    // kBinaryOp: Among {lhs, rhs, output}_quantization_axis, only check rhs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. pkg/proxy/endpointschangetracker.go

    	"k8s.io/kubernetes/pkg/proxy/metrics"
    )
    
    var supportedEndpointSliceAddressTypes = sets.New[discovery.AddressType](
    	discovery.AddressTypeIPv4,
    	discovery.AddressTypeIPv6,
    )
    
    // EndpointsChangeTracker carries state about uncommitted changes to an arbitrary number of
    // Endpoints, keyed by their namespace and name.
    type EndpointsChangeTracker struct {
    	// lock protects lastChangeTriggerTimes
    	lock sync.Mutex
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/offline-mode.apt

      a server container in-JVM, running tests against it, and shutting it down.
    
    ** SCM mojos
    
      See below for discussion on SCM-related operations. Any mojo which
      carries out some analysis or other interaction with a SCM system
      will likely be unavailable when in offline mode.
    
    
    * Implications for Subsystems
    
    ** Maven-Wagon
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. src/math/big/arith.go

    		z[i] = Word(zi)
    		c = Word(cc)
    	}
    	return
    }
    
    // addVWlarge is addVW, but intended for large z.
    // The only difference is that we check on every iteration
    // whether we are done with carries,
    // and if so, switch to a much faster copy instead.
    // This is only a good idea for large z,
    // because the overhead of the check and the function call
    // outweigh the benefits when z is small.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 28 20:09:27 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            // We are preserving the original value if it had to be created,
            // because it carries information required by dependency resolution
            // to ensure project artifacts are actually created the first time around.
            // When the value is loaded from the store, the dependency information is lost.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. pkg/config/model.go

    	//
    	// The lifetime of an object of a particular revision depends on the underlying data store.
    	// The data store may compactify old revisions in the interest of storage optimization.
    	//
    	// An empty revision carries a special meaning that the associated object has
    	// not been stored and assigned a revision.
    	ResourceVersion string `json:"resourceVersion,omitempty"`
    
    	// CreationTimestamp records the creation time
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top