Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 151 for splitLine (0.18 sec)

  1. src/math/big/natconv.go

    // the size of q. Using the iterative method on both halves means 2 * (n/2)(n/2 + 1)/2 divW()'s
    // plus the expensive long div(). Asymptotically, the ratio is favorable at 1/2 the divW()'s, and
    // is made better by splitting the subblocks recursively. Best is to split blocks until one more
    // split would take longer (because of the nat/nat div()) than the twice as many divW()'s of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modindex/build.go

    // white space characters while taking into account quotes and escaping, and
    // returns an array of substrings of s or an empty list if s contains only white space.
    // Single quotes and double quotes are recognized to prevent splitting within the
    // quoted region, and are removed from the resulting substrings. If a quote in s
    // isn't closed err will be set and r will have the unclosed argument as the
    // last element. The backslash is used for escaping.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  3. src/runtime/proc_test.go

    		bigframe(stop)
    
    		// check if we've been asked to stop.
    		select {
    		case <-stop:
    			return n
    		}
    	}
    }
    
    func bigframe(stop chan int) int {
    	// not splitting the stack will overflow.
    	// small will notice that it needs a stack split and will
    	// catch the overflow.
    	var x [8192]byte
    	return small(stop, &x)
    }
    
    func small(stop chan int, x *[8192]byte) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    If the volatile input is essential to the output then you can try to make the task using the volatile input cheaper to execute.
    You can do this by splitting the task into two tasks - the first task doing the expensive work which is cacheable and the second task adding the volatile data to the output.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  5. src/archive/tar/writer.go

    		tw.err = tw.writeGNUHeader(&tw.hdr)
    		return tw.err
    	default:
    		return err // Non-fatal error
    	}
    }
    
    func (tw *Writer) writeUSTARHeader(hdr *Header) error {
    	// Check if we can use USTAR prefix/suffix splitting.
    	var namePrefix string
    	if prefix, suffix, ok := splitUSTARPath(hdr.Name); ok {
    		namePrefix, hdr.Name = prefix, suffix
    	}
    
    	// Pack the main header.
    	var f formatter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. src/runtime/sys_linux_386.s

    	get_tls(AX)
    	MOVL	DX, g(AX)
    	MOVL	BX, g_m(DX)
    
    	CALL	runtime·stackcheck(SB)	// smashes AX, CX
    	MOVL	0(DX), DX	// paranoia; check they are not nil
    	MOVL	0(BX), BX
    
    	// more paranoia; check that stack splitting code works
    	PUSHAL
    	CALL	runtime·emptyfunc(SB)
    	POPAL
    
    nog:
    	CALL	SI	// fn()
    	CALL	exit1<>(SB)
    	MOVL	$0x1234, 0x1005
    
    TEXT runtime·sigaltstack(SB),NOSPLIT,$-8
    	MOVL	$SYS_sigaltstack, AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_4x.md

    
    ## Version 4.4.0
    
    _2020-02-17_
    
     *  New: Support `canceled()` as an event that can be observed by `EventListener`. This should be
        useful for splitting out canceled calls in metrics.
    
     *  New: Publish a [bill of materials (BOM)][bom] for OkHttp. Depend on this from Gradle or Maven to
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/script/engine.go

    }
    
    const argSepChars = " \t\r\n#"
    
    // parse parses a single line as a list of space-separated arguments.
    // subject to environment variable expansion (but not resplitting).
    // Single quotes around text disable splitting and expansion.
    // To embed a single quote, double it:
    //
    //	'Don''t communicate by sharing memory.'
    func parse(filename string, lineno int, line string) (cmd *command, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  9. pkg/controller/replicaset/replica_set_test.go

    	// send it into the syncHandler.
    	manager.syncHandler = func(ctx context.Context, key string) error {
    		namespace, name, err := cache.SplitMetaNamespaceKey(key)
    		if err != nil {
    			t.Errorf("Error splitting key: %v", err)
    		}
    		rsSpec, err := manager.rsLister.ReplicaSets(namespace).Get(name)
    		if err != nil {
    			t.Errorf("Expected to find replica set under key %v: %v", key, err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  10. hack/update-codegen.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # shellcheck disable=2046 # printf word-splitting is intentional
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # This tool wants a different default than usual.
    KUBE_VERBOSE="${KUBE_VERBOSE:-1}"
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top