Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 120 for output1 (0.28 sec)

  1. pkg/kubelet/server/server_test.go

    			}
    
    			if test.stdout {
    				output := make([]byte, 10)
    				n, err := stdoutStream.Read(output)
    				close(clientStdoutReadDone)
    				assert.NoError(t, err, "reading from stdout stream")
    				assert.Equal(t, expectedStdout, string(output[0:n]), "stdout")
    			}
    
    			if test.stderr && !test.tty {
    				output := make([]byte, 10)
    				n, err := stderrStream.Read(output)
    				close(clientStderrReadDone)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    === [4.7] Changes to the structure of Gradle's plain console output
    
    The plain console mode now formats output consistently with the rich console, which means that the output format has changed.
    For example:
    
     * The output produced by a given task is now grouped together, even when other tasks execute in parallel with it.
     * Task execution headers are printed with a "> Task" prefix.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/Futures.java

          ListenableFuture<V> future) {
        if (future.isDone()) {
          return future;
        }
        NonCancellationPropagatingFuture<V> output = new NonCancellationPropagatingFuture<>(future);
        future.addListener(output, directExecutor());
        return output;
      }
    
      /** A wrapped future that does not propagate cancellation to its delegate. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/html/template/escape_test.go

    			}
    			if w, g := test.output, b.String(); w != g {
    				t.Fatalf("%s: escaped output: want\n\t%q\ngot\n\t%q", test.name, w, g)
    			}
    			b.Reset()
    			if err := tmpl.Execute(b, pdata); err != nil {
    				t.Fatalf("%s: template execution failed for pointer: %s", test.name, err)
    			}
    			if w, g := test.output, b.String(); w != g {
    				t.Fatalf("%s: escaped output for pointer: want\n\t%q\ngot\n\t%q", test.name, w, g)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            """
    
            when:
            serveValidKey()
    
            then:
            succeeds ":compileJava"
        }
    
        def "if signature is verified and checksum is declared in configuration, verify checksum (terse output=#terse)"() {
            createMetadataFile {
                keyServer(keyServerFixture.uri)
                verifySignatures()
                addTrustedKey("org:foo:1.0", validPublicKeyHexString)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        // Convert back into floating point spae.
        Value output = rewriter.create<MulOp>(op.getLoc(), input_ty,
                                              quantized_input, quant_to_float);
    
        output = rewriter.create<AddV2Op>(op.getLoc(), input_ty, output,
                                          nudged_float_min);
    
        rewriter.replaceOp(op, {output});
        return success();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  7. configure.py

        try:
          output = run_shell(device_query_bin).split('\n')
          pattern = re.compile('\d*\\.\d*')
          output = [pattern.search(x) for x in output if 'Capability' in x]
          output = ','.join(x.group() for x in output if x is not None)
        except subprocess.CalledProcessError:
          output = ''
      else:
        output = ''
      return output
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. cmd/object-api-listobjects_test.go

    			// necessary. Test passes as expected, but the output values
    			// are verified for correctness here.
    			if err == nil && testCase.shouldPass {
    				// The length of the expected ListObjectsResult.Objects
    				// should match in both expected result from test cases
    				// and in the output. On failure calling t.Fatalf,
    				// otherwise it may lead to index out of range error in
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    The build cache takes care of caching the outputs and intermediate files of the build, such as task outputs or artifact transform outputs.
    The configuration cache takes care of caching the build configuration for a particular set of tasks.
    In other words, the configuration cache saves the output of the configuration phase, and the build cache saves the outputs of the execution phase.
    
    [IMPORTANT]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

            return false;
          }
          // Satisfies the input condition.
          has_quantized_types_for_weights = true;
        }
      }
      for (Value output : call_op.getOutput()) {
        if (auto type = mlir::dyn_cast<TensorType>(output.getType())) {
          if (mlir::isa<QuantizedType>(type.getElementType())) {
            return false;
          }
        }
      }
      return has_quantized_types_for_weights;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top