Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,151 for Supplied (0.15 sec)

  1. pkg/kube/labels/labels.go

    	}
    )
    
    // CanonicalService returns the values of the following labels from the supplied map:
    // - service.istio.io/canonical-name
    // - service.istio.io/canonical-revision
    //
    // If the labels are not in the map, a set of fallbacks are checked. For canonical name,
    // `app.kubernetes.io/name` is checked, then `app`, evenutually falling back to the
    // supplied `workloadName`. For canonical revision, `app.kubernetes.io/version` is checked,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r18/BuildActionCrossVersionSpec.groovy

            when:
            withConnection {
                it.action(new BrokenAction()).run()
            }
    
            then:
            BuildActionFailureException e = thrown()
            e.message == /The supplied build action failed with an exception./
            e.cause instanceof BrokenAction.CustomException
    
            and:
            failure.assertHasDescription('this is a custom exception')
            assertHasConfigureFailedLogging()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

         * <p>Adds the given projects to the build. Each path in the supplied list is treated as the path of a project to
         * add to the build. Note that these path are not file paths, but instead specify the location of the new project in
         * the project hierarchy. As such, the supplied paths must use the ':' character as separator (and NOT '/').</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/Jvm.java

         * This method is intended to be used for user supplied java homes.
         *
         * @param javaHome - location of your jdk or jre (jdk is safer), cannot be null
         * @return jvm for given java home
         * @throws org.gradle.internal.jvm.JavaHomeException when supplied javaHome does not seem to be a valid jdk or jre location
         * @throws IllegalArgumentException when supplied javaHome is not a valid folder
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:57:34 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultTransport.java

            if (relativeSource.isAbsolute()) {
                throw new IllegalArgumentException("Supplied URI is not relative");
            }
            URI source = baseURI.resolve(relativeSource);
            if (!source.toASCIIString().startsWith(baseURI.toASCIIString())) {
                throw new IllegalArgumentException("Supplied relative URI escapes baseUrl");
            }
            GetTask getTask = new GetTask(source);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkerExecutor.java

         *
         * @since 5.6
         */
        WorkQueue noIsolation(Action<? super WorkerSpec> action);
    
        /**
         * Creates a {@link WorkQueue} to submit work for asynchronous execution with an isolated classloader and the requirements specified in the supplied {@link ClassLoaderWorkerSpec}.
         *
         * @since 5.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/componentconfigs/configset.go

    		if gvk.Group == h.GroupVersion.Group {
    			cfg := h.CreateEmpty()
    			if err := cfg.Unmarshal(docmap); err != nil {
    				return nil, err
    			}
    			// consider all successfully loaded configs from a document map as user supplied
    			cfg.SetUserSupplied(true)
    			return cfg, nil
    		}
    	}
    	return nil, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. samples/bookinfo/src/mysql/Dockerfile

    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    FROM mysql:8.3.0
    # MYSQL_ROOT_PASSWORD must be supplied as an env var
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 714 bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CollectionSupplier.java

        /**
         * Combines the current collection supplier with the given {@link Collector} (also a {@link ValueSupplier value supplier}), producing a new
         * collection supplier that produces a collection that contains the original elements and the
         * elements supplied by the given collector.
         *
         * @param added a collector that represents an addition to the collection to be returned by this supplier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 05:02:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. src/go/types/context.go

    // that may be supplied by users during instantiation.
    //
    // Contexts serve two purposes:
    //  - reduce the duplication of identical instances
    //  - short-circuit instantiation cycles
    //
    // For the latter purpose, we must always have a context during instantiation,
    // whether or not it is supplied by the user. For both purposes, it must be the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top