Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sdivisible (0.13 sec)

  1. pkg/registry/core/pod/strategy_test.go

    							},
    						}},
    					},
    				},
    			},
    			wantErr: true,
    		},
    		{
    			name: "a new pod setting init-container with indivisible hugepages values while container with divisible hugepages values",
    			pod: &api.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Namespace: "default",
    					Name:      "foo",
    				},
    				Spec: api.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

        }
    
        def "set description, visibility and transitivity"() {
            given:
            def configuration = conf()
    
            when:
            configuration.setDescription("description")
            configuration.setVisible(false)
            configuration.setTransitive(false)
    
            then:
            configuration.description == "description"
            !configuration.visible
            !configuration.transitive
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    		}
    	}
    	if pagesPerArena%pagesPerSpanRoot != 0 {
    		print("pagesPerArena (", pagesPerArena, ") is not divisible by pagesPerSpanRoot (", pagesPerSpanRoot, ")\n")
    		throw("bad pagesPerSpanRoot")
    	}
    	if pagesPerArena%pagesPerReclaimerChunk != 0 {
    		print("pagesPerArena (", pagesPerArena, ") is not divisible by pagesPerReclaimerChunk (", pagesPerReclaimerChunk, ")\n")
    		throw("bad pagesPerReclaimerChunk")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      if (in_shape[0] % num_cores_per_replica != 0) {
        return context_op->emitOpError()
               << "A map_outside_compilation op's input and output shapes must be "
                  "divisible by num_cores_per_replica="
               << num_cores_per_replica;
      }
      llvm::SmallVector<int64_t, 4> shape;
      shape.push_back(split_size);
      for (int i = 1; i < in_shape.size(); ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            return metaDataProvider.getModule();
        }
    
        @Override
        public boolean isVisible() {
            return visible;
        }
    
        @Override
        public Configuration setVisible(boolean visible) {
            validateMutation(MutationType.DEPENDENCIES);
            this.visible = visible;
            return this;
        }
    
        @Override
        public Set<Configuration> getExtendsFrom() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
Back to top