Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,820 for ipnets (0.14 sec)

  1. platforms/documentation/docs/src/snippets/tasks/incrementalTask/kotlin/build.gradle.kts

        outputs.dir(inputsDir)
        doLast {
            inputsDir.file("1.txt").asFile.writeText("Changed content for existing file 1.")
            inputsDir.file("4.txt").asFile.writeText("Content for new file 4.")
        }
    }
    // end::updated-inputs[]
    
    // tag::removed-input[]
    tasks.register<Delete>("removeInput") {
        delete("inputs/3.txt")
    }
    // end::removed-input[]
    
    // tag::removed-output[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/RuleDefinitionRuleExtractor.java

                this.inputs = inputs;
                this.ruleSourceType = ruleSourceType;
                this.ruleExtractor = ruleExtractor;
            }
    
            @Override
            public ModelReference<?> getSubject() {
                return targetReference;
            }
    
            @Override
            public List<? extends ModelReference<?>> getInputs() {
                return inputs;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/gradients/math_grad_test.cc

                    absl::Span<AbstractTensorHandle* const> inputs,
                    absl::Span<AbstractTensorHandle*> outputs) {
      return ops::Sub(ctx, inputs[0], inputs[1], &outputs[0], "Sub");
    }
    
    Status MulModel(AbstractContext* ctx,
                    absl::Span<AbstractTensorHandle* const> inputs,
                    absl::Span<AbstractTensorHandle*> outputs) {
      return ops::Mul(ctx, inputs[0], inputs[1], &outputs[0], "Mul");
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 17:32:14 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/kotlin/build.gradle.kts

    }
    
    // tag::ad-hoc-task[]
    tasks.register("processTemplatesAdHoc") {
        inputs.property("engine", TemplateEngineType.FREEMARKER)
        inputs.files(fileTree("src/templates"))
            .withPropertyName("sourceFiles")
            .withPathSensitivity(PathSensitivity.RELATIVE)
        inputs.property("templateData.name", "docs")
        inputs.property("templateData.variables", mapOf("year" to "2013"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. cmd/kube-apiserver/app/options/validation_test.go

    			if (len(errs) > 0) != tt.wantErr {
    				t.Fatalf("completedConfig.New() errors = %+v, wantErr %v", errs, tt.wantErr)
    			}
    		})
    	}
    }
    
    func getIPnetFromCIDR(cidr string) *net.IPNet {
    	_, ipnet, _ := netutils.ParseCIDRSloppy(cidr)
    	return ipnet
    }
    
    func TestValidateServiceNodePort(t *testing.T) {
    	testCases := []struct {
    		name         string
    		options      *ServerRunOptions
    		expectErrors bool
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. cmd/cloud-controller-manager/nodeipamcontroller.go

    	var serviceCIDR *net.IPNet
    	var secondaryServiceCIDR *net.IPNet
    
    	// should we start nodeIPAM
    	if !ccmConfig.ComponentConfig.KubeCloudShared.AllocateNodeCIDRs {
    		return nil, false, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 14 19:06:22 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. src/net/ip.go

    // be an IPv4 address.
    type IP []byte
    
    // An IPMask is a bitmask that can be used to manipulate
    // IP addresses for IP addressing and routing.
    //
    // See type [IPNet] and func [ParseCIDR] for details.
    type IPMask []byte
    
    // An IPNet represents an IP network.
    type IPNet struct {
    	IP   IP     // network number
    	Mask IPMask // network mask
    }
    
    // IPv4 returns the IP address (in 16-byte form) of the
    // IPv4 address a.b.c.d.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_launch_util_test.cc

      std::vector<const Tensor*> inputs;
      inputs.push_back(a);
      inputs.push_back(b);
      TF_ASSERT_OK_AND_ASSIGN(auto execute_outputs,
                              RunExecutable(inputs, {}, result, executable));
    
      TF_EXPECT_OK(PopulateCtxOutputsFromPjRtExecutableOutputs(
          /*num_missing_prefix_ctx_inputs=*/0, inputs, {}, *result,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/swift/SwiftDepsHandlerTest.groovy

            assert current.inputs == original.inputs
        }
    
        void assertFileHasResetTimestamp(SwiftDepsHandler.SwiftDeps current, File... inputs) {
            assert !original.inputs.isEmpty()
            def changedInputs = inputs*.absolutePath
    
            original.inputs.each { String inputPath, List timestamp ->
                List currentTimestamp = current.inputs.get(inputPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

                  Eq(TensorType_INT8));
      ASSERT_THAT(float_graph->tensors()->Get(float_op->inputs()->Get(1))->type(),
                  Eq(TensorType_FLOAT32));
      EXPECT_THAT(subgraph->tensors[op->inputs[1]].get()->type,
                  Eq(TensorType_INT8));
    
      // Verify FC bias should be int32 quantized.
      ASSERT_THAT(float_graph->tensors()->Get(float_op->inputs()->Get(2))->type(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top