Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,057 for fetching (0.18 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/IndexedCache.java

    public interface IndexedCache<K, V> extends Cache<K, V> {
        /**
         * Fetches the value mapped to the given key from this cache, blocking until it is available.
         *
         * A shared or exclusive file lock is held while fetching the value, depending on implementation.
         *
         * @return The value, or null if no value associated with the key.
         */
        @Override
        @Nullable
        V getIfPresent(K key);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultModelBuilder.java

            // this is needed since any non-null list, even if empty, is treated as 'execute these tasks before building the model'
            // this would cause an error when fetching the BuildEnvironment model
            List<String> rationalizedTasks = rationalizeInput(tasks);
            operationParamsBuilder.setTasks(rationalizedTasks);
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics_test.go

    # TYPE apiserver_storage_objects gauge
    apiserver_storage_objects{resource="foo"} 10
    `,
    		},
    		{
    			desc:     "failed fetch",
    			resource: "bar",
    			count:    -1,
    			want: `# HELP apiserver_storage_objects [STABLE] Number of stored objects at the time of last check split by kind. In case of a fetching error, the value will be -1.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildModelParameters.java

            return isolatedProjects;
        }
    
        /**
         * When {@link  #isIsolatedProjects()} is true, should intermediate tooling models be cached?
         * This is currently true when fetching a tooling model, otherwise false.
         */
        public boolean isIntermediateModelCache() {
            return intermediateModelCache;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/PotentialEdge.java

     * doesn't exist. This means that the edge would effectively be added if, and only if, the
     * target component exists. Checking if it does exist is currently done by fetching metadata,
     * but we could have a cheaper strategy (HEAD request, ...).
     */
    class PotentialEdge {
        final EdgeState edge;
        final ModuleVersionIdentifier toModuleVersionId;
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CachingRuleExecutor.java

     * that is going to be cached, and most likely the thing the caller really cares about
     */
    public interface CachingRuleExecutor<KEY, DETAILS, RESULT> {
        /**
         * Executes a rule, fetching the result from the cache if available, or executing the rule and caches
         * the result in case of cache miss.
         *  @param rule the rule to be executed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    		// goes from having a waypoint to having no waypoint and then eventually gets a waypoint back
    		return krt.FetchOne[Waypoint](ctx, Waypoints, krt.FilterKey(wp.ResourceName()))
    	}
    
    	// try fetching the namespace-defined waypoint
    	namespace := ptr.OrEmpty[*v1.Namespace](krt.FetchOne[*v1.Namespace](ctx, Namespaces, krt.FilterKey(o.Namespace)))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istioctl/kube.go

    	Filename() string
    }
    
    func newKube(ctx resource.Context, config Config) (Instance, error) {
    	fn, ok := ctx.Clusters().GetOrDefault(config.Cluster).(Filenamer)
    	if !ok {
    		return nil, fmt.Errorf("cluster does not support fetching kube config")
    	}
    	n := &kubeComponent{
    		config:     config,
    		kubeconfig: fn.Filename(),
    	}
    
    	return n, nil
    }
    
    // Invoke implements WaitForConfigs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r33/BuildActionCompositeBuildCrossVersionSpec.groovy

    import org.gradle.integtests.tooling.fixture.TargetGradleVersion
    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    import spock.lang.Issue
    
    /**
     * Tests for the tooling API, which check fetching models and running actions using different
     * combinations of versions of the TAPI and Gradle.
     *
     * Support for clients using a tooling API version older than 3.0 was removed in Gradle 5.0, so
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

      auto status_or_device_coodinates =
          tensorflow::GetDeviceCoordinates(device_assignment_attr);
      if (!status_or_device_coodinates.ok())
        return cluster.emitError()
               << "error in fetching tpu device coordinates: "
               << status_or_device_coodinates.status().message();
    
      status_or_tpu_device_assignment =
          tensorflow::GetTPUCompilationAndExecutionDevices(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top