Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for printssa (0.38 sec)

  1. src/fmt/fmt_test.go

    			}
    		}
    	}
    }
    
    // TestComplexFormatting checks that a complex always formats to the same
    // thing as if done by hand with two singleton prints.
    func TestComplexFormatting(t *testing.T) {
    	var yesNo = []bool{true, false}
    	var values = []float64{1, 0, -1, posInf, negInf, NaN}
    	for _, plus := range yesNo {
    		for _, zero := range yesNo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  2. src/time/format.go

    	stdTZ                    = iota                // "MST"
    	stdISO8601TZ                                   // "Z0700"  // prints Z for UTC
    	stdISO8601SecondsTZ                            // "Z070000"
    	stdISO8601ShortTZ                              // "Z07"
    	stdISO8601ColonTZ                              // "Z07:00" // prints Z for UTC
    	stdISO8601ColonSecondsTZ                       // "Z07:00:00"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    	out   bytes.Buffer  // combined stdout/stderr from cmd
    	err   error         // work result
    	end   chan struct{} // a value means cmd ended (or was skipped)
    }
    
    // printSkip prints a skip message for all of work.
    func (w *work) printSkip(t *tester, msg string) {
    	if t.json {
    		synthesizeSkipEvent(json.NewEncoder(&w.out), w.dt.name, msg)
    		return
    	}
    	fmt.Fprintln(&w.out, msg)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

    Artifacts
        - $resultsBinPath (artifactType = directory)
    """)
    
            and:
            hasIncubatingLegend()
            hasSecondaryVariantsLegend()
        }
    
        def "prints explicit capabilities"() {
            buildFile << """
                plugins { id 'java-library' }
    
                configurations.runtimeElements.outgoing {
                    capability("org.test:extra:1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. src/time/time.go

    //
    // To count the number of units in a [Duration], divide:
    //
    //	second := time.Second
    //	fmt.Print(int64(second/time.Millisecond)) // prints 1000
    //
    // To convert an integer number of units to a Duration, multiply:
    //
    //	seconds := 10
    //	fmt.Print(time.Duration(seconds)*time.Second) // prints 10s
    const (
    	Nanosecond  Duration = 1
    	Microsecond          = 1000 * Nanosecond
    	Millisecond          = 1000 * Microsecond
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  6. src/go/printer/nodes.go

    				if lt == nil {
    					break
    				}
    				line++
    				t = lt.Stmt
    			}
    			i++
    		}
    	}
    	if nindent > 0 {
    		p.print(unindent)
    	}
    }
    
    // block prints an *ast.BlockStmt; it always spans at least two lines.
    func (p *printer) block(b *ast.BlockStmt, nindent int) {
    	p.setPos(b.Lbrace)
    	p.print(token.LBRACE)
    	p.stmtList(b.List, nindent, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    		if x, ok := expr.(*ast.Ident); ok {
    			expr = &ast.Ident{NamePos: pos, Name: x.Name}
    		}
    
    		// Change AST, because some later processing depends on it,
    		// and also because -godefs mode still prints the AST.
    		old := *r.Expr
    		*r.Expr = expr
    
    		// Record source-level edit for cgo output.
    		if !r.Done {
    			// Prepend a space in case the earlier code ends
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        }
    
        if (function_name.contains("depthwise_conv2d")) {
          return addReshapeOpToDepthwiseWeight(call_op, rewriter);
        }
    
        return failure();
      }
    };
    
    // Prints a summary about the quantization results.
    class QuantizationSummary {
     public:
      explicit QuantizationSummary(ModuleOp module)
          : module_(module), symbol_table_(module) {}
    
      void Print() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. src/testing/testing.go

    // that as not in json mode (because it's not chatty at all).
    func (p *chattyPrinter) prefix() string {
    	if p != nil && p.json {
    		return string(marker)
    	}
    	return ""
    }
    
    // Updatef prints a message about the status of the named test to w.
    //
    // The formatted message must include the test name itself.
    func (p *chattyPrinter) Updatef(testName, format string, args ...any) {
    	p.lastNameMu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. hack/local-up-cluster.sh

      if [[ "${PRESERVE_ETCD}" == "false" ]]; then
        [[ -n "${ETCD_DIR-}" ]] && kube::etcd::clean_etcd_dir
      fi
    
      exit 0
    }
    
    # Check if all processes are still running. Prints a warning once each time
    # a process dies unexpectedly.
    function healthcheck {
      if [[ -n "${APISERVER_PID-}" ]] && ! sudo kill -0 "${APISERVER_PID}" 2>/dev/null; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top