Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,090 for aN (0.48 sec)

  1. guava/src/com/google/common/net/InetAddresses.java

        }
        return (short) hextet;
      }
    
      /**
       * Convert a byte array into an InetAddress.
       *
       * <p>{@link InetAddress#getByAddress} is documented as throwing a checked exception "if IP
       * address is of illegal length." We replace it with an unchecked exception, for use by callers
       * who already know that addr is an array of length 4 or 16.
       *
       * @param addr the raw 4-byte or 16-byte IP address in big-endian order
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    	// - Object properties where the property schema is of an "unknown type". An "unknown type" is recursively defined as:
    	//   - A schema with no type and x-kubernetes-preserve-unknown-fields set to true
    	//   - An array where the items schema is of an "unknown type"
    	//   - An object where the additionalProperties schema is of an "unknown type"
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/graph/Network.java

     * do not need to mutate a network (e.g. if you write a method than runs a read-only algorithm on
     * the network), you should use the non-mutating {@link Network} interface, or an {@link
     * ImmutableNetwork}.
     *
     * <p>You can create an immutable copy of an existing {@code Network} using {@link
     * ImmutableNetwork#copyOf(Network)}:
     *
     * <pre>{@code
     * ImmutableNetwork<Integer, MyEdge> immutableGraph = ImmutableNetwork.copyOf(network);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	// - Object properties where the property schema is of an "unknown type". An "unknown type" is recursively defined as:
    	//   - A schema with no type and x-kubernetes-preserve-unknown-fields set to true
    	//   - An array where the items schema is of an "unknown type"
    	//   - An object where the additionalProperties schema is of an "unknown type"
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

            "a:b::c"    | "Cannot locate tasks that match 'a:b::c'. The path should not include an empty segment (try 'a:b:c' instead)."
            "a:"        | "Cannot locate tasks that match 'a:'. The path should not include an empty segment (try 'a' instead)."
            "a::"       | "Cannot locate tasks that match 'a::'. The path should not include an empty segment (try 'a' instead)."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/ValueGraph.java

     * you do not need to mutate a graph (e.g. if you write a method than runs a read-only algorithm on
     * the graph), you should use the non-mutating {@link ValueGraph} interface, or an {@link
     * ImmutableValueGraph}.
     *
     * <p>You can create an immutable copy of an existing {@code ValueGraph} using {@link
     * ImmutableValueGraph#copyOf(ValueGraph)}:
     *
     * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. pkg/kubelet/metrics/collectors/resource_metrics_test.go

    			summary:    nil,
    			summaryErr: fmt.Errorf("failed to get summary"),
    			expectedMetrics: `
    				# HELP scrape_error [ALPHA] 1 if there was an error while getting container metrics, 0 otherwise
    				# TYPE scrape_error gauge
    				scrape_error 1
    				# HELP resource_scrape_error [STABLE] 1 if there was an error while getting container metrics, 0 otherwise
    				# TYPE resource_scrape_error gauge
    				resource_scrape_error 1
    			`,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.3K bytes
    - Viewed (1)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/zz_generated.conversion.go

    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  9. src/encoding/asn1/asn1.go

    //
    //   - An ASN.1 INTEGER can be written to an int, int32, int64,
    //     or *[big.Int].
    //     If the encoded value does not fit in the Go type,
    //     Unmarshal returns a parse error.
    //
    //   - An ASN.1 BIT STRING can be written to a [BitString].
    //
    //   - An ASN.1 OCTET STRING can be written to a []byte.
    //
    //   - An ASN.1 OBJECT IDENTIFIER can be written to an [ObjectIdentifier].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableMultimap.java

      }
    
      /**
       * Returns an immutable collection of the values for the given key. If no mappings in the multimap
       * have the provided key, an empty immutable collection is returned. The values are in the same
       * order as the parameters used to build this multimap.
       */
      @Override
      public abstract ImmutableCollection<V> get(K key);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top