Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,240 for Supplied (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/defaults_test.go

    	testCases := []struct {
    		desc string
    		in   *KMSConfiguration
    		want *KMSConfiguration
    	}{
    		{
    			desc: "timeout not supplied",
    			in:   &KMSConfiguration{},
    			want: &KMSConfiguration{Timeout: defaultTimeout, CacheSize: &defaultCacheSize, APIVersion: defaultAPIVersion},
    		},
    		{
    			desc: "timeout supplied",
    			in:   &KMSConfiguration{Timeout: &v1.Duration{Duration: 1 * time.Minute}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/Type1Message.java

        }
    
    
        /**
         * Returns the supplied authentication domain.
         *
         * @return A <code>String</code> containing the supplied domain.
         */
        public String getSuppliedDomain () {
            return this.suppliedDomain;
        }
    
    
        /**
         * Sets the supplied authentication domain for this message.
         *
         * @param suppliedDomain
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Sep 02 12:55:08 UTC 2018
    - 7.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/ntlmssp/Type1Message.java

        }
    
        /**
         * Returns the supplied authentication domain.
         *
         * @return A <code>String</code> containing the supplied domain.
         */
        public String getSuppliedDomain() {
            return suppliedDomain;
        }
    
        /**
         * Sets the supplied authentication domain for this message.
         *
         * @param suppliedDomain The supplied domain for this message.
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 8K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/IvyDescriptorFileGeneratorTest.groovy

            }
        }
    
        def "writes supplied status"() {
            when:
            descriptor.status = "my-status"
    
            then:
            ivyXml.info.@status == "my-status"
        }
    
        def "writes supplied branch"() {
            when:
            descriptor.branch = "someBranch"
    
            then:
            ivyXml.info.@branch == "someBranch"
        }
    
        def "writes supplied licenses" () {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. releasenotes/notes/46121.yaml

    upgradeNotes:
      - title: don't set spec.replicas unless user supplies a real number
        content: |
          When using the gateway chart, the user had to either pick between
          explicitly setting `spec.replicas`, or using the chart-supplied
          `HorizontalPodAutoscaler`. Now `spec.replicas` is only set if
          `.Values.replicaCount` is supplied by the user and is a valid number.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 13:53:35 UTC 2023
    - 652 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. maven-model-builder/src/main/java/org/apache/maven/model/io/ModelWriter.java

    import org.apache.maven.api.model.Model;
    
    /**
     * Handles serialization of a model into some kind of textual format like XML.
     *
     */
    public interface ModelWriter {
    
        /**
         * Writes the supplied model to the specified file. Any non-existing parent directories of the output file will be
         * created automatically.
         *
         * @param output The file to serialize the model to, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/impl/SingleDepthFileAccessTracker.java

    import org.gradle.internal.file.FileAccessTracker;
    
    import java.io.File;
    import java.nio.file.Path;
    
    /**
     * Tracks access to files and directories at the supplied depth within the supplied base
     * directory by setting their last access time in the supplied {@link FileAccessTimeJournal}.
     */
    @SuppressWarnings("Since15")
    public class SingleDepthFileAccessTracker implements FileAccessTracker {
    
        private final Path baseDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. 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)
Back to top