Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 526 for untainer (1.48 sec)

  1. tools/istio-iptables/pkg/README.md

    | ------------- | ------------- | ------------- |
    | from CNI plugin (sidecar) | host $PATH  | pod netns context |
    | from init container  (sidecar) | init container $PATH  | pod netns context |
    | from CNI agent (ambient) | CNI container $PATH  | pod netns context |
    | from CNI agent (ambient) | CNI container $PATH  | host netns context |
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. ci/official/utilities/setup_docker.sh

        docker push "$TFCI_DOCKER_IMAGE"
      fi
    fi
    
    # Keep the existing "tf" container if it's already present.
    # The container is not cleaned up automatically! Remove it with:
    # docker rm tf
    if ! docker container inspect tf >/dev/null 2>&1 ; then
      # Pass all existing TFCI_ variables into the Docker container
      env_file=$(mktemp)
      env | grep ^TFCI_ > "$env_file"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 18:22:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. pkg/kubelet/container/container_hash_test.go

        }
      }
    }
    `
    
    	sampleV131HashValue = uint64(0x8e45cbd0)
    )
    
    func TestConsistentHashContainer(t *testing.T) {
    	container := &v1.Container{}
    	if err := json.Unmarshal([]byte(sampleContainer), container); err != nil {
    		t.Error(err)
    	}
    
    	currentHash := HashContainer(container)
    	if currentHash != sampleV131HashValue {
    		t.Errorf("mismatched hash value with v1.31")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleSourceDetector.java

                    @Override
                    public Collection<Reference<Class<? extends RuleSource>>> load(@SuppressWarnings("NullableProblems") Class<?> container) throws Exception {
                        if (isRuleSource(container)) {
                            Class<? extends RuleSource> castClass = Cast.uncheckedCast(container);
                            return ImmutableSet.<Reference<Class<? extends RuleSource>>>of(new WeakReference<Class<? extends RuleSource>>(castClass));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TarExtractorTest.java

        public TarExtractor tarExtractor;
    
        @Override
        protected void setUp() throws Exception {
            super.setUp();
            StandardCrawlerContainer container = new StandardCrawlerContainer();
            container.singleton("archiveStreamFactory", ArchiveStreamFactory.class)
                    .singleton("compressorStreamFactory", CompressorStreamFactory.class).singleton("mimeTypeHelper", MimeTypeHelperImpl.class)
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/LhaExtractorTest.java

        public LhaExtractor lhaExtractor;
    
        @Override
        protected void setUp() throws Exception {
            super.setUp();
            StandardCrawlerContainer container = new StandardCrawlerContainer();
            container.singleton("mimeTypeHelper", MimeTypeHelperImpl.class).singleton("tikaExtractor", TikaExtractor.class)
                    .singleton("lhaExtractor", LhaExtractor.class)
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/security_context.go

    )
    
    // determineEffectiveSecurityContext gets container's security context from v1.Pod and v1.Container.
    func (m *kubeGenericRuntimeManager) determineEffectiveSecurityContext(pod *v1.Pod, container *v1.Container, uid *int64, username string) (*runtimeapi.LinuxContainerSecurityContext, error) {
    	effectiveSc := securitycontext.DetermineEffectiveSecurityContext(pod, container)
    	synthesized := convertToRuntimeSecurityContext(effectiveSc)
    	if synthesized == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/ifrt/lower_to_ifrt_restore_variable.mlir

    // CHECK-NEXT:     [[SLICE:%.*]] = "tf.Const"()
    // CHECK-NEXT:     [[NAME:%.*]] = "tf.Const"()
    // CHECK-NEXT:     [[HANDLEY:%.*]] = "tf.VarHandleOp"() <{container = "x", shared_name = "y"}> : () -> tensor<!tf_type.resource<tensor<3x1xf32>>>
    // CHECK-NEXT:     [[HANDLEZ:%.*]] = "tf.VarHandleOp"() <{container = "x", shared_name = "z"}> : () -> tensor<!tf_type.resource<tensor<1x3xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/reconfig_batch_op.mlir

      // CHECK-SAME: container = ""
      // CHECK-SAME: enable_large_batch_splitting = false
      // CHECK-SAME: max_batch_size = 6 : i64
      // CHECK-SAME: max_enqueued_batches = 10 : i64
      // CHECK-SAME: num_batch_threads = 2 : i64
      // CHECK-SAME: shared_name = "batch/"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 17:38:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathAttributesCrossVersionSpec.groovy

            """
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
            def container = project.classpathContainers.find { it.path == 'containerPath' }
    
            then:
            container.classpathAttributes.size() == 1
            container.classpathAttributes[0].name == 'customKey'
            container.classpathAttributes[0].value == 'customValue'
    
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top