Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,046 for currentCA (0.11 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

            executer.expectDocumentedDeprecationWarning("Specifying custom build file location has been deprecated. This is scheduled to be removed in Gradle 9.0. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_7.html#configuring_custom_build_layout");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    	// the specified node reflecting which volumes are/or might be attached to that node
    	// based on the current actual state of the world. This function is currently used by
    	// attach_detach_controller to process VolumeInUse
    	GetAttachedVolumesForNode(nodeName types.NodeName) []AttachedVolume
    
    	// GetAttachedVolumesPerNode generates and returns a map of nodes and volumes that added to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

      // Note the following deviations from the "host" part of the
      // URI as defined in RFC 3986:
      // 1. IPs are not allowed. Currently an IngressRuleValue can only apply to
      //    the IP in the Spec of the parent Ingress.
      // 2. The `:` delimiter is not respected because ports are not allowed.
      // 	  Currently the port of an Ingress is implicitly :80 for http and
      // 	  :443 for https.
      // Both these may change in the future.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AbstractService.java

          throw new TimeoutException(
              "Timed out waiting for "
                  + this
                  + " to reach a terminal state. "
                  + "Current state: "
                  + state());
        }
      }
    
      /** Checks that the current state is equal to the expected state. */
      @GuardedBy("monitor")
      private void checkCurrentState(State expected) {
        State actual = state();
        if (actual != expected) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueState.java

        /**
         * Retrieves the current convention.
         */
        public abstract S convention();
    
        /**
         * Marks this value as being explicitly set with
         * the current value assigned to the convention.
         */
        public abstract S setToConvention();
    
        /**
         * Marks this value as being explicitly set with
         * the current value assigned to the convention,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheCoordinator.java

         */
        private void takeOwnershipNow() {
            if (owner != null && owner != Thread.currentThread()) {
                throw new IllegalStateException(String.format("Cannot take ownership of %s as it is currently being used by another thread.", cacheDisplayName));
            }
            owner = Thread.currentThread();
            operations.pushCacheAction();
        }
    
        /**
         * Releases ownership of the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 12:21:15 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/xml/SimpleMarkupWriter.java

            if (context != Context.CData) {
                throw new IllegalStateException("Cannot end CDATA node, as not currently in a CDATA node.");
            }
            writeRaw("]]>");
            context = Context.Text;
            return this;
        }
    
        /**
         * Writes an XML comment.
         * Characters are not XML encoded inside the comment.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 02 12:15:58 UTC 2021
    - 12K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java

                    Path current = currentPom.toPath().toAbsolutePath().normalize();
                    Path topDirectory = session.getTopDirectory();
                    if (topDirectory != null && current.startsWith(topDirectory)) {
                        current = topDirectory.relativize(current);
                    }
                    logger.info("  from " + current);
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. pkg/apis/authorization/types.go

    }
    
    // ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface
    type ResourceAttributes struct {
    	// Namespace is the namespace of the action being requested.  Currently, there is no distinction between no namespace and all namespaces
    	// "" (empty) is defaulted for LocalSubjectAccessReviews
    	// "" (empty) is empty for cluster-scoped resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 08:53:21 UTC 2019
    - 10K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

      // The candidate operation to consider merging the current island group with.
      Operation* candidate = nullptr;
      // The island group of the current candidate if it is an IslandOp, nullptr
      // otherwise.
      MergedIsland* candidate_island = nullptr;
    
      // Given an input operation, try to replace the current candidate operation
      // with it.
      auto try_update_current_candidate = [&](Operation* rhs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top