Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 492 for prepending (0.23 sec)

  1. istioctl/pkg/checkinject/checkinject.go

    					if ok {
    						return fmt.Sprintf("Pod has %s=%s label, preventing injection", me.Key, v), false
    					}
    				case metav1.LabelSelectorOpNotIn:
    					v, ok := podLabels[me.Key]
    					if !ok {
    						continue
    					}
    					for _, nv := range me.Values {
    						if nv == v {
    							return fmt.Sprintf("Pod has %s=%s label, preventing injection", me.Key, v), false
    						}
    					}
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. src/os/executable.go

    package os
    
    // Executable returns the path name for the executable that started
    // the current process. There is no guarantee that the path is still
    // pointing to the correct executable. If a symlink was used to start
    // the process, depending on the operating system, the result might
    // be the symlink or the path it pointed to. If a stable result is
    // needed, [path/filepath.EvalSymlinks] might help.
    //
    // Executable returns an absolute path unless an error occurred.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 776 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

          if (!preceding_op) continue;
    
          // Check whether the preceding op is a quantized composite function.
          if (llvm::isa<TF::PartitionedCallOp>(preceding_op)) {
            auto call_op = llvm::cast<TF::PartitionedCallOp>(preceding_op);
            if (!IsCompositeFunction(call_op)) continue;
            return true;
          }
    
          // Check if the preceding op is a quantized same-scale op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. pkg/kube/kclient/clienttest/test_helpers.go

    // Reads may be cached or uncached, depending on the input client.
    func WrapReadWriter[T controllers.Object](t test.Failer, c kclient.ReadWriter[T]) TestClient[T] {
    	return TestClient[T]{
    		c: c,
    		t: t,
    		TestWriter: TestWriter[T]{
    			c: c,
    			t: t,
    		},
    	}
    }
    
    // Wrap returns a client that calls t.Fatal on errors.
    // Reads may be cached or uncached, depending on the input client.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/comparison/ExhaustiveLinesSearcher.java

        private final boolean useUnifiedDiff;
    
        private ExhaustiveLinesSearcher(boolean useUnifiedDiff) {
            this.useUnifiedDiff = useUnifiedDiff;
        }
    
        /**
         * Uses the git diff algorithm for presenting matches.
         * <p>
         * Enabling this option will only show a single match, regardless of how many potential matches
         * containing the same number of matching lines are found.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. cmd/erasure-metadata-utils.go

    	}
    	return max, maxErr
    }
    
    // reduceQuorumErrs behaves like reduceErrs by only for returning
    // values of maximally occurring errors validated against a generic
    // quorum number that can be read or write quorum depending on usage.
    func reduceQuorumErrs(ctx context.Context, errs []error, ignoredErrs []error, quorum int, quorumErr error) error {
    	if contextCanceled(ctx) {
    		return context.Canceled
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/AmbiguousVariantSelectionException.java

     * This exception class is internal and has been replaced by {@link ArtifactVariantSelectionException}, which is also internal.
     * If possible, catch a {@link RuntimeException} instead to avoid depending on Gradle internal classes.
     */
    @Deprecated
    public abstract class AmbiguousVariantSelectionException extends ArtifactVariantSelectionException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 21:57:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. testing/precondition-tester/README.md

    `RunsOnPDP11` precondition, which we won't satisfy anywhere as we don't run tests on such hardware, will always be ignored.
    
    Multiple occasions happened when engineers were caught by surprise finding tests not running anywhere (e.g., tests depending on non-LTS, cleaned up JDK distributions). This project is the result of an initiative to [redesign the [recondition] system](https://github.com/gradle/gradle/pull/22885), where we aim to precisely track if all preconditions are satisfied...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_test.go

    					},
    				},
    			},
    			false,
    			v1.PodPending,
    			"mixed state #2 with restart always",
    		},
    		{
    			&v1.Pod{
    				Spec: desiredState,
    				Status: v1.PodStatus{
    					ContainerStatuses: []v1.ContainerStatus{
    						runningState("containerA"),
    						waitingState("containerB"),
    					},
    				},
    			},
    			false,
    			v1.PodPending,
    			"mixed state #3 with restart always",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

                return factory.create();
            } finally {
                restoreProperty(propertyName, originalValue);
            }
        }
    
        /**
         * Provides safe access to the system properties, preventing concurrent {@link #withSystemProperty(String, String, Factory)} calls.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top