Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 364 for isDependent (0.21 sec)

  1. integration-tests/gradle/build.gradle.kts

          } else {
            expectedCompileClasspathJreVersion + extraLegacyDependencies
          }
        } else {
          // with Gradle Module Metadata
          // - variant is chosen based on the actual environment, independent of version suffix
          // - reduced runtime classpath is used (w/o annotation libraries)
          // - capability conflicts are detected with Google Collections
          if (name.contains("Android") && !name.contains("JreConstraint")) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/certificates/v1alpha1/generated.proto

    //
    // It can be optionally associated with a particular assigner, in which case it
    // contains one valid set of trust anchors for that signer. Signers may have
    // multiple associated ClusterTrustBundles; each is an independent set of trust
    // anchors for that signer. Admission control is used to enforce that only users
    // with permissions on the signer can create or modify the corresponding bundle.
    message ClusterTrustBundle {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. cmd/kubelet/app/options/options_test.go

    			defaultValue = defaultFlag.Value.String()
    			if s == defaultValue {
    				return
    			}
    		}
    		// if the flag is a string slice, each element is specified with an independent flag invocation
    		if values, err := fs.GetStringSlice(flag.Name); err == nil {
    			for _, s := range values {
    				args = append(args, fmt.Sprintf("--%s=%s", flag.Name, s))
    			}
    		} else {
    			if len(s) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/connection/RoutePlanner.kt

       *
       * If [nextPlan] is not-null, another attempt should be made by following it. If [throwable] is
       * non-null, it should be reported to the user should all further attempts fail.
       *
       * The two values are independent: results can contain both (recoverable error), neither
       * (success), just an exception (permanent failure), or just a plan (non-exceptional retry).
       */
      data class ConnectResult(
        val plan: Plan,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/project/path/DefaultPathTranslator.java

                    }
                }
            }
    
            return s;
        }
    
        /**
         * Removes the leading directory separator from the specified filesystem path (if any). For platform-independent
         * behavior, this method accepts both the forward slash and the backward slash as separator.
         *
         * @param path The filesystem path, may be <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphResolver.java

            this.dependencyGraphBuilder = dependencyGraphBuilder;
        }
    
        /**
         * Perform a graph resolution, visiting the resolved graph with the provided visitor.
         *
         * <p>We should keep this class independent of
         * {@link org.gradle.api.internal.artifacts.ResolveContext} and
         * {@link org.gradle.api.artifacts.ResolutionStrategy}</p>, as those are tightly
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 23:54:35 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. docs/bucket/retention/README.md

    A default retention period and retention mode can be configured on a bucket to be applied to objects created in that bucket. Independent of retention, an object can also be under legal hold. This effectively disallows all deletes of an object under legal hold until the legal hold is removed by an API call.
    
    ## Get Started
    
    ### 1. Prerequisites
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. src/sync/waitgroup.go

    // at any time.
    // Typically this means the calls to Add should execute before the statement
    // creating the goroutine or other event to be waited for.
    // If a WaitGroup is reused to wait for several independent sets of events,
    // new Add calls must happen after all previous Wait calls have returned.
    // See the WaitGroup example.
    func (wg *WaitGroup) Add(delta int) {
    	if race.Enabled {
    		if delta < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/WithPluginValidation.groovy

                alwaysPasses = true
            }
    
            /**
             * Allows passing a predicate which tells if a plugin is supposed to
             * pass or not.
             * Because a plugin validation is independent of _which_ project it is
             * applied to, it doesn't care about the project path.
             */
            void passing(Closure<Boolean> pluginIdPredicate) {
                passingPluginsPredicate = pluginIdPredicate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:13:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

    //
    // It can be optionally associated with a particular assigner, in which case it
    // contains one valid set of trust anchors for that signer. Signers may have
    // multiple associated ClusterTrustBundles; each is an independent set of trust
    // anchors for that signer. Admission control is used to enforce that only users
    // with permissions on the signer can create or modify the corresponding bundle.
    message ClusterTrustBundle {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top