Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,555 for specifiedFn (0.32 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/transport/transport.go

    			return fmt.Errorf("could not load certificate/key pair specified by -tls_cert and -tls_key: %v", err)
    		}
    		tr.certs = []tls.Certificate{tlsCert}
    	} else if cert == "" && key != "" {
    		return fmt.Errorf("-tls_key is specified, so -tls_cert must also be specified")
    	} else if cert != "" && key == "" {
    		return fmt.Errorf("-tls_cert is specified, so -tls_key must also be specified")
    	}
    
    	if ca != "" {
    		caCertPool := x509.NewCertPool()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskOutputFilePropertyBuilder.java

         * value specified must meet the validation constraints for the property.
         */
        TaskOutputFilePropertyBuilder optional();
    
        /**
         * Sets whether the task property is optional. If the task property is optional, it means that a value does not have to be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 14 12:40:35 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/collection/LruHashSet.java

        /**
         * Returns true if this set contains the specified element.
         *
         * @param o
         *            element whose presence in this set is to be tested.
         * @return true if this set contains the specified element.
         */
        @Override
        public boolean contains(final Object o) {
            return map.containsKey(o);
        }
    
        /**
         * Adds the specified element to this set if it is not already present.
         *
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/resource.go

    	return string(rn)
    }
    
    // Cpu returns the Cpu limit if specified.
    func (rl *ResourceList) Cpu() *resource.Quantity {
    	return rl.Name(ResourceCPU, resource.DecimalSI)
    }
    
    // Memory returns the Memory limit if specified.
    func (rl *ResourceList) Memory() *resource.Quantity {
    	return rl.Name(ResourceMemory, resource.BinarySI)
    }
    
    // Storage returns the Storage limit if specified.
    func (rl *ResourceList) Storage() *resource.Quantity {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 10 21:09:13 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/SerializableTester.java

      /**
       * Serializes and deserializes the specified object.
       *
       * <p><b>GWT warning:</b> Under GWT, this method simply returns its input, as proper GWT
       * serialization tests require more setup. This no-op behavior allows test authors to intersperse
       * {@code SerializableTester} calls with other, GWT-compatible tests.
       *
       * <p>Note that the specified object may not be known by the compiler to be a {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/pruning_test.go

            x-kubernetes-embedded-resource: true
            properties:
              specified:
                type: string
    `
    
    	fooSchemaEmbeddedResourceInstance = pruningFooInstance + `
    embeddedPruning:
      apiVersion: foo/v1
      kind: Foo
      metadata:
        name: foo
        unspecified: bar
      unspecified: bar
      specified: bar
    embeddedPreserving:
      apiVersion: foo/v1
      kind: Foo
      metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/LittleEndianDataOutputStream.java

      }
    
      /**
       * Writes a char as specified by {@link DataOutputStream#writeChar(int)}, except using
       * little-endian byte order.
       *
       * @throws IOException if an I/O error occurs
       */
      @Override
      public void writeChar(int v) throws IOException {
        writeShort(v);
      }
    
      /**
       * Writes a {@code String} as specified by {@link DataOutputStream#writeChars(String)}, except
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/PrefixedObjectValueSource.java

        /**
         * Wrap the specified root object, allowing the specified expression prefix.
         * @param prefix the prefix.
         * @param root the root of the graph.
         */
        public PrefixedObjectValueSource(String prefix, Object root) {
            super(new PrefixedValueSourceWrapper(new ObjectBasedValueSource(root), prefix));
        }
    
        /**
         * Wrap the specified root object, allowing the specified list of expression
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/result/DefaultBuildableArtifactResolveResultTest.groovy

            e == failure
        }
    
        def "cannot get file when no result specified"() {
            when:
            result.result
    
            then:
            IllegalStateException e = thrown()
            e.message == 'No result has been specified.'
        }
    
        def "cannot get failure when no result specified"() {
            when:
            result.failure
    
            then:
            IllegalStateException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/reflect/TypeToInstanceMap.java

      /**
       * Returns the value the specified type is mapped to, or {@code null} if no entry for this type is
       * present. This will only return a value that was bound to this specific type, not a value that
       * may have been bound to a subtype.
       */
      @CheckForNull
      <T extends @NonNull B> T getInstance(TypeToken<T> type);
    
      /**
       * Maps the specified class to the specified value. Does <i>not</i> associate this value with any
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Apr 22 01:15:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top