Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 999 for _ignored (0.18 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/DefaultGarbageCollectionMonitor.java

                public boolean isSatisfiedBy(GarbageCollectorMXBean element) {
                    return element.getName().equals(gcStrategy.getGarbageCollectorName());
                }
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo.h

    //  exported_model_signatures: List of exported model signatures (strings) to
    //    convert.
    //  tag_names: List of tag names (strings) used for loading SavedModel.
    //    Ignored for MLIR input.
    //  input_arg_shapes_str:  A string representation of input argument shapes for
    //    'main' entry-point, separating tensors with ':', dimension with ',', and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/DirectorySensitivity.java

        /**
         * Whatever the default behavior is for the given fingerprinter.  For some fingerprinters, the
         * default behavior is to fingerprint directories, for others, they ignore directories by default.
         */
        DEFAULT(snapshot -> true),
        /**
         * Ignore directories
         */
        IGNORE_DIRECTORIES(snapshot -> snapshot.getType() != FileType.Directory);
    
        @SuppressWarnings("ImmutableEnumChecker")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultValueSourceProviderFactoryTest.groovy

            def provider = createProviderOf(ThrowingValueSource) {}
    
            when:
            try {
                provider.get()
            } catch (UnsupportedOperationException ignored) {
                // expected
            }
    
            then:
            1 * listener.valueObtained({ ObtainedValue it -> it.value.failure.isPresent() }, _)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	if labelValue, ok := meta.Labels[constants.AmbientUseWaypointLabel]; ok {
    		// NOTE: this means Istio reserves the word "none" in this field with a special meaning
    		//   a waypoint named "none" cannot be used and will be ignored
    		//   also reserve anything with suffix "/none" to prevent use of "namespace/none" as a work around
    		// ~ is used in other portions of the API, reserve it with special meaning although it's unlikely to be documented
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.h

    // name should be unique to the graph it is being inserted to. If the
    // `ignore_unregistered_attrs` argument is set to true, the attributes which are
    // not in the op registry will be ignored. If the `ignore_unregistered_attrs`
    // argument is not set to true, _output_shapes attribute is added to nodes with
    // ShapedType for the leading values with ShapedType in the results of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator_test.go

    	return matchconditions.MatchResult{Matches: f.matches, FailedConditionName: "placeholder", Error: f.error}
    }
    
    func TestValidate(t *testing.T) {
    	ignore := v1.Ignore
    	fail := v1.Fail
    
    	forbiddenReason := metav1.StatusReasonForbidden
    	unauthorizedReason := metav1.StatusReasonUnauthorized
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. samples/bookinfo/src/reviews/Dockerfile

    #   limitations under the License.
    
    FROM gradle:8.6.0-jdk8 as builder
    
    # Not sure why but we need root to build. Ignore lint error, this is for a multistage builder so it doesn't matter.
    # hadolint ignore=DL3002
    USER 0
    COPY . /home/gradle
    
    RUN gradle build
    
    FROM open-liberty:24.0.0.1-kernel-slim-java17-openj9
    
    ENV SERVERDIRNAME reviews
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 23:40:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. docs/auditlog/auditlog-echo.go

    //go:build ignore
    // +build ignore
    
    // Copyright (c) 2015-2024 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 21:31:13 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. src/go/build/read.go

    	// will reject them. They can be (and have already been) ignored.
    	if hasEmbed {
    		var line []byte
    		for first := true; r.findEmbed(first); first = false {
    			line = line[:0]
    			pos := r.pos
    			for {
    				c := r.readByteNoBuf()
    				if c == '\n' || r.err != nil || r.eof {
    					break
    				}
    				line = append(line, c)
    			}
    			// Add args if line is well-formed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top