Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,277 for current1_ (0.14 sec)

  1. src/internal/trace/reader_test.go

    			if err != nil {
    				t.Fatalf("failed to parse test file at %s: %v", testPath, err)
    			}
    			testReader(t, tr, exp)
    		})
    	}
    }
    
    func FuzzReader(f *testing.F) {
    	// Currently disabled because the parser doesn't do much validation and most
    	// getters can be made to panic. Turn this on once the parser is meant to
    	// reject invalid traces.
    	const testGetters = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. pilot/pkg/status/resourcelock.go

    	return lockResource{
    		GroupVersionResource: i.GroupVersionResource,
    		Namespace:            i.Namespace,
    		Name:                 i.Name,
    	}
    }
    
    type WorkQueue struct {
    	// tasks which are not currently executing but need to run
    	tasks []lockResource
    	// a lock to govern access to data in the cache
    	lock sync.Mutex
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/common/equality.go

    	switch listType {
    	case "map":
    		// Look up keys for this index in current object
    		currentElement := asList[index]
    
    		oldList := r.mapList
    		if oldList == nil {
    			oldList = MakeMapList(r.Schema, oldAsList)
    			r.mapList = oldList
    		}
    		return oldList.Get(currentElement)
    
    	case "set":
    		// Are sets correlatable? Only if the old value equals the current value.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 21:53:21 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ProjectLeaseRegistry.java

        /**
         * Releases any project state locks or task execution locks currently held by this thread, allowing the current
         * thread to run as if it were executing an isolated task.
         *
         * Does not release worker lease.
         */
        void runAsIsolatedTask();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. manifests/charts/README.md

    As an extreme, the goal is to be possible to run Istio workloads in a cluster without installing any Istio component
    in that cluster. Currently, the minimum we require is the security provider (node agent or citadel).
    
    ### Install Istio CRDs
    
    This is the first step of the installation. Please do not remove or edit any CRD - config currently requires
    all CRDs to be present. On each upgrade it is recommended to reapply the file, to make sure
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. maven-core/src/site/apt/getting-to-container-configured-mojos.apt

      Currently, mojo configuration is done externally to the container, in the
      DefaultPluginManager in the maven-core API. In order to get from here to
      there, we need to do several things to add capability to the default
      configuration of plexus. This document will detail those changes.
    
    Container Enhancements
    
    * ExpressionEvaluator
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 30 15:20:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/errors.go

    // a minimum resource version that is larger than the largest currently available resource version for a requested resource.
    func NewTooLargeResourceVersionError(minimumResourceVersion, currentRevision uint64, retrySeconds int) error {
    	err := apierrors.NewTimeoutError(fmt.Sprintf("Too large resource version: %d, current: %d", minimumResourceVersion, currentRevision), retrySeconds)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:39:10 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java

    public interface DfsReferralDataInternal extends DfsReferralData {
    
        /**
         * Replaces the host with the given FQDN if it is currently unqualified
         * 
         * @param fqdn
         */
        void fixupHost ( String fqdn );
    
    
        /**
         * Possibly appends the given domain name to the host name if it is currently unqualified
         * 
         * @param domain
         */
        void fixupDomain ( String domain );
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-main/src/crossVersionTest/groovy/org/gradle/integtests/wrapper/WrapperOldJavaCrossVersionIntegrationTest.groovy

            file("gradle.properties").writeProperties("org.gradle.java.home": jdk.javaHome.canonicalPath)
    
            then:
            def result = executor.usingExecutable('gradlew').withArgument('help').runWithFailure()
            result.hasErrorOutput("Gradle ${GradleVersion.current().version} requires Java 8 or later to run. Your build is currently configured to use Java ${jdk.javaVersion.majorVersion}.")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_op_quant_spec.h

    // Check if the op is quantizable. Currently, the scope of quantizable op is
    // limited to compute intense operations and the ops that supports integer
    // operands.
    bool IsOpWithQuantizableTrait(Operation* op);
    
    // Check if the op's operand accepts int8 type.
    bool IsOpWithInt8TypeOperand(Operation* op);
    
    // Check if the data is in quantizable precision. Currently, a value in f32 or
    // bf16 is quantizable.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top