Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 82 for inputs_ (0.23 sec)

  1. pkg/scheduler/internal/cache/cache_test.go

    	protocol, ip string
    	port         int32
    }
    
    type hostPortInfoBuilder struct {
    	inputs []hostPortInfoParam
    }
    
    func newHostPortInfoBuilder() *hostPortInfoBuilder {
    	return &hostPortInfoBuilder{}
    }
    
    func (b *hostPortInfoBuilder) add(protocol, ip string, port int32) *hostPortInfoBuilder {
    	b.inputs = append(b.inputs, hostPortInfoParam{protocol, ip, port})
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    You have to define the task inputs and outputs manually.
    
    2. Using a task as a copy source, i.e., as an argument to `from()`, won't create an automatic task dependency between your task and that copy source.
    As such, if you use the `copy()` method as part of a task action, you must explicitly declare all inputs and outputs to get the correct behavior.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  3. cmd/object-api-listobjects_test.go

    					DeleteMarker: false,
    				},
    				{
    					Name:         "unique/folder/1.txt",
    					DeleteMarker: false,
    				},
    			},
    		},
    	}
    
    	testCases := []struct {
    		// Inputs to ListObjects.
    		bucketName string
    		prefix     string
    		marker     string
    		delimiter  string
    		maxKeys    int
    		versioned  bool
    		// Expected output of ListObjects.
    		resultL ListObjectsInfo
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        println "converting \${input.name} to red"
                        assert input.file
                        def output = outputs.file(input.name + ".red")
                        output.text = input.text + ".red"
                    }
                }
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

                        def input = inputArtifact.get().asFile
                        if (input.exists()) {
                            println "processing \${input.name}"
                        } else {
                            println "processing missing \${input.name}"
                        }
                        def output = outputs.file(input.name + ".green")
                        output.text = input.list().length + ".green"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

          }
        }
      }
      return has_quantized_types_for_weights;
    }
    
    // Checks if all the inputs are quantized.
    bool IsQuantizedCallforStaticRange(TF::PartitionedCallOp call_op) {
      bool has_quantized_types = false;
      for (Value input : call_op.getArgs()) {
        if (auto type = mlir::dyn_cast<TensorType>(input.getType())) {
          if (mlir::isa<QuantizedType>(type.getElementType())) {
            has_quantized_types = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    [[declare_unreadable_input_output]]
    ==== Declaring input or output directories which contain unreadable content
    
    For up-to-date checks Gradle relies on tracking the state of the inputs and the outputs of a task.
    Gradle used to ignore unreadable files in the input or outputs to support certain use-cases, although it cannot track their state.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. cmd/xl-storage_test.go

    		srcPath     string
    		expectedErr error
    	}{
    		// TestXLStorage case - 1.
    		// TestXLStorage case with valid inputs, expected to pass.
    		{
    			srcVol:      "success-vol",
    			srcPath:     "success-file",
    			expectedErr: nil,
    		},
    		// TestXLStorage case - 2.
    		// TestXLStorage case with valid inputs, expected to pass.
    		{
    			srcVol:      "success-vol",
    			srcPath:     "path/to/success-file",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                        assertThat(peeker.getDone(input1)).isSameInstanceAs("value1");
                        try {
                          peeker.getDone(input2Failed);
                          fail("Peeker should fail for failed inputs");
                        } catch (ExecutionException expected) {
                        }
                        try {
                          peeker.getDone(nonInput);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

                                &output_permutation, &call_node_def_));
    
        // Apply the input/output permutations to the 'args_by_...' and 'results_'
        // mappings, so when we build edges in BuildOutputGraph() we
        // connect them to the right input/output positions.
        if (input_permutation.size() != args_by_src_.size()) {
          return errors::InvalidArgument("Input permutation has incorrect size.");
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top