Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 151 for splitLine (0.15 sec)

  1. api/openapi-spec/v3/apis_openapi.json

                "type": "string"
              },
              "version": {
                "default": "",
                "description": "version specifies the version in the form of \"version\". This is to save the clients the trouble of splitting the GroupVersion.",
                "type": "string"
              }
            },
            "required": [
              "groupVersion",
              "version"
            ],
            "type": "object"
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. test/nosplit.go

    start 124 nosplit call f; f 0 nosplit; REJECT ppc64 ppc64le amd64 386
    start 128 nosplit call f; f 0 nosplit; REJECT
    start 132 nosplit call f; f 0 nosplit; REJECT
    start 136 nosplit call f; f 0 nosplit; REJECT
    
    # Calling a splitting function from a nosplit function requires
    # having room for the saved caller PC of the call but also the
    # saved caller PC for the call to morestack.
    # Architectures differ in the same way as before.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. internal/logger/console.go

    	// Build the passed error message
    	errMsg := fmt.Sprintf(msg, args...)
    
    	tagPrinted := false
    
    	// Print the error message: the following code takes care
    	// of splitting error text and always pretty printing the
    	// red banner along with the error message. Since the error
    	// message itself contains some colored text, we needed
    	// to use some ANSI control escapes to cursor color state
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. src/go/build/constraint/expr.go

    		y1 := pushNot(x.Y, not)
    		if not {
    			return and(x1, y1)
    		}
    		if x1 == x.X && y1 == x.Y {
    			return x
    		}
    		return or(x1, y1)
    	}
    }
    
    // appendSplitAnd appends x to list while splitting apart any top-level && expressions.
    // For example, appendSplitAnd({W}, X && Y && Z) = {W, X, Y, Z}.
    func appendSplitAnd(list []Expr, x Expr) []Expr {
    	if x, ok := x.(*AndExpr); ok {
    		list = appendSplitAnd(list, x.X)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/gen_quantized_function_library.py

          f.write('namespace {0} {{\n'.format(namespace))
    
        for tag, module in modules:
          f.write('constexpr char {0}[] ='.format(module_prefix + tag.upper()))
    
          for line in module.splitlines():
            f.write('\n  "')
            f.write(line.rstrip().replace('"', r'\"'))
            f.write('\\n"')
    
          f.write(';\n')
    
        for namespace in reversed(namespaces):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 20 01:38:06 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_device_ops.h

    // and write the tensors they access in order to concatenate them into a batch.
    // We would need either to call out to an XLA computation to perform the
    // concatenation, or we would need to refactor those kernels so the splitting
    // or merging is done in a separate operator that can be compiled.
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 23 19:28:25 UTC 2021
    - 17.1K bytes
    - Viewed (0)
  7. src/hash/crc32/crc32_amd64.go

    		panic("not available")
    	}
    
    	// This method is inspired from the algorithm in Intel's white paper:
    	//    "Fast CRC Computation for iSCSI Polynomial Using CRC32 Instruction"
    	// The same strategy of splitting the buffer in three is used but the
    	// combining calculation is different; the complete derivation is explained
    	// below.
    	//
    	// -- The basic idea --
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.cc

        if (!it_inserted_pair.second)
          return errors::FailedPrecondition(
              absl::StrCat("tensor ", name, " is repeated in the arrays flag"));
    
        ArrayInfo& info = it_inserted_pair.first->second;
        // Splitting the type and subtype into parts
        std::vector<std::string> parts =
            absl::StrSplit(type, absl::ByAnyChar("()"));
        // If type has subtypes then parts[0] = type, parts[1] = subtypes,
        // parts[2] = ""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. src/cmd/trace/main.go

    		pct := float64(lost) / float64(parsed.size) * 100
    		log.Printf("Lost %.2f%% of the latest trace data due to error (%s of %s)", pct, byteCount(lost), byteCount(parsed.size))
    	}
    
    	log.Print("Splitting trace for viewer...")
    	ranges, err := splitTrace(parsed)
    	if err != nil {
    		logAndDie(err)
    	}
    
    	log.Printf("Opening browser. Trace viewer is listening on %s", addr)
    	browser.Open(addr)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. integration-tests/gradle/gradlew

    #       options in "$@", and eventually passing that to Java.
    #
    #       Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
    #       and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
    #       see the in-line comments for details.
    #
    #       There are tweaks for specific operating systems such as AIX, CygWin,
    #       Darwin, MinGW, and NonStop.
    #
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top