Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,232 for outInts (0.17 sec)

  1. .github/workflows/mint.yml

              TAG="quay.io/minio/minio:${{ steps.vars.outputs.sha_short }}" make docker
    
          - name: multipart uploads test
            run: |
              ${GITHUB_WORKSPACE}/.github/workflows/multipart/migrate.sh "${{ steps.vars.outputs.sha_short }}"
    
          - name: compress and encrypt
            run: |
              ${GITHUB_WORKSPACE}/.github/workflows/run-mint.sh "compress-encrypt" "minio" "minio123" "${{ steps.vars.outputs.sha_short }}"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/fake_session.cc

        const std::vector<std::string>& output_names,
        const std::vector<std::string>& target_nodes,
        std::vector<Tensor>* outputs) {
      tensorflow::RunMetadata run_metadata;
      return Run(tensorflow::RunOptions(), inputs, output_names, target_nodes,
                 outputs, &run_metadata);
    }
    
    Status FakeSession::Run(
        const tensorflow::RunOptions& run_options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/cleanup/DefaultBuildOutputCleanupRegistryTest.groovy

            registry.registerOutputs(file('build/outputs'))
            registry.registerOutputs(file('build/outputs/other'))
            registry.registerOutputs(file('outputs'))
            registry.resolveOutputs()
    
            expect:
            registry.isOutputOwnedByBuild(file('build/outputs'))
            registry.isOutputOwnedByBuild(file('build/outputs/some-dir/other-dir'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 29 20:47:06 UTC 2021
    - 3K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/DefaultStandardOutputRedirectorTest.groovy

            redirector.start()
            System.out.println('this is stdout')
            System.err.println('this is stderr')
            redirector.stop()
    
            then:
            System.out == outputs.stdOutPrintStream
            System.err == outputs.stdErrPrintStream
        }
    
        def startAndStopRedirectsStdOut() {
            when:
            redirector.redirectStandardOutputTo(stdOutListener)
            redirector.start()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/while_gradients.cc

                                      std::vector<Output>* outputs) {
        DCHECK_EQ(inputs.size(), 1);
        outputs->emplace_back(ops::Subtract(scope, inputs[0], 1));
        return scope.status();
      };
    
      string frame_name = BackPropFrameName(while_ctx->frame_name());
      std::vector<Output> outputs;
      TF_RETURN_IF_ERROR(BuildWhileLoop(
          scope, {loop_count}, cond_fn, body_fn, frame_name, &outputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/GroovyJavaJointIncrementalCompilationIntegrationTest.groovy

            run "compileGroovy"
    
            when:
            outputs.snapshot { applyGroovyFileSet(firstChange) }
            run "compileGroovy", "--info"
    
            then: 'first build'
            upToDateOrMessage(firstBuildMessage)
            outputs.recompiledClasses(firstCompiledClasses as String[])
    
            when: 'second build'
            outputs.snapshot { applyGroovyFileSet(secondChange) }
            run "compileGroovy", "--info"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/opGen.go

    		reg: regInfo{
    			outputs: []outputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    		},
    	},
    	{
    		name:   "SETNE",
    		argLen: 1,
    		asm:    x86.ASETNE,
    		reg: regInfo{
    			outputs: []outputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    		},
    	},
    	{
    		name:   "SETL",
    		argLen: 1,
    		asm:    x86.ASETLT,
    		reg: regInfo{
    			outputs: []outputInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskActionIntegrationTest.groovy

            buildFile << """
                task first {
                    outputs.file file("first.txt")
                    outputs.cacheIf { true }
                    doFirst {
                        file("first.txt").text = "Hello from the first task"
                    }
                }
    
                task second {
                    outputs.file file("second.txt")
                    outputs.cacheIf { true }
                    doFirst {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/testing/helpers.go

    					reflect.ValueOf(a.GetObject()),
    				})
    			}
    		}
    	}
    	for i := 1; i < len(outputs); i++ {
    		if !apiequality.Semantic.DeepEqual(outputs[0], outputs[i]) {
    			r.t.Errorf("expected mutating admission plugin to be idempontent, but got different results on reinvocation, diff:\n%s", cmp.Diff(outputs[0], outputs[i]))
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. tensorflow/cc/client/client_session.cc

                              std::vector<Tensor>* outputs) const {
      return Run(FeedType{}, fetch_outputs, {}, outputs);
    }
    
    Status ClientSession::Run(const FeedType& inputs,
                              const std::vector<Output>& fetch_outputs,
                              std::vector<Tensor>* outputs) const {
      return Run(inputs, fetch_outputs, {}, outputs);
    }
    
    Status ClientSession::Run(const FeedType& inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:04:10 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top