Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 713 for setIws (0.13 sec)

  1. src/runtime/stubs_amd64.go

    func gcWriteBarrierSI()
    func gcWriteBarrierR8()
    func gcWriteBarrierR9()
    
    // stackcheck checks that SP is in range [g->stack.lo, g->stack.hi).
    func stackcheck()
    
    // Called from assembly only; declared for go vet.
    func settls() // argument in DI
    
    // Retpolines, used by -spectre=ret flag in cmd/asm, cmd/compile.
    func retpolineAX()
    func retpolineCX()
    func retpolineDX()
    func retpolineBX()
    func retpolineBP()
    func retpolineSI()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/FileBackedBlockStore.java

            private BlockPointer pos;
            private int payloadSize;
    
            private BlockImpl(BlockPayload payload, BlockPointer pos) {
                this(payload);
                setPos(pos);
            }
    
            public BlockImpl(BlockPayload payload) {
                super(payload);
                pos = null;
                payloadSize = -1;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. src/runtime/cgo/linux_syscall.c

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux
    
    #ifndef _GNU_SOURCE // setres[ug]id() API.
    #define _GNU_SOURCE
    #endif
    
    #include <grp.h>
    #include <sys/types.h>
    #include <unistd.h>
    #include <errno.h>
    #include "libcgo.h"
    
    /*
     * Assumed POSIX compliant libc system call wrappers. For linux, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. src/runtime/sys_windows_386.s

    	// TODO: don't use the arbitrary pointer (see go.dev/issue/59824)
    	MOVL	$TEB_ArbitraryPtr, CX
    	JMP	settls
    ok:
    	// Convert the TLS index at CX into
    	// an offset from TEB_TlsSlots.
    	SHLL	$2, CX
    
    	// Save offset from TLS into tls_g.
    	ADDL	$TEB_TlsSlots, CX
    settls:
    	MOVL	CX, runtimeĀ·tls_g(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/ManifestMergeDetails.java

        /**
         * Returns the value for the key of the manifest after the merge takes place. By default this is the value
         * of the source for the merge.
         */
        String getValue();
    
        /**
         * Set's the value for the key of the manifest after the merge takes place.
         */
        void setValue(String value);
    
        /**
         * Excludes this key from being in the manifest after the merge.
         */
        void exclude();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. internal/http/dial_dnscache.go

    		host, port, err := net.SplitHostPort(addr)
    		if err != nil {
    			return nil, err
    		}
    
    		if net.ParseIP(host) != nil {
    			// For IP only setups there is no need for DNS lookups.
    			return baseDialCtx(ctx, "tcp", addr)
    		}
    
    		ips, err := lookupHost(ctx, host)
    		if err != nil {
    			return nil, err
    		}
    
    		for _, ip := range ips {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 03 19:30:51 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            PrunedTag prunedtag = new PrunedTag(tag);
            prunedtag.setAttr(attrName, attrValue);
            prunedtag.setId(id);
            prunedtag.setCss(css);
            assertEquals("PrunedTag [tag=" + tag + ", id=" + id + ", css=" + css + ", attrName=" + attrName + ", attrValue=" + attrValue + "]",
                    prunedtag.toString());
        }
    
        public void test_parse() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/FixedSharedModeCrossProcessCacheAccessIntegrationTest.groovy

            block.releaseAll()
            build.waitForFinish()
    
            then:
            noExceptionThrown()
    
            cleanup:
            cacheAccess?.close()
        }
    
        /**
         * This setups a {@link FixedSharedModeCrossProcessCacheAccess} that does initially not see that the cache is already initialised
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. src/flag/example_test.go

    // The String method's output will be used in diagnostics.
    func (i *interval) String() string {
    	return fmt.Sprint(*i)
    }
    
    // Set is the method to set the flag value, part of the flag.Value interface.
    // Set's argument is a string to be parsed to set the flag.
    // It's a comma-separated list, so we split it.
    func (i *interval) Set(value string) error {
    	// If we wanted to allow the flag to be set multiple times,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 18:59:00 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_status_updater.go

    type StatefulSetStatusUpdaterInterface interface {
    	// UpdateStatefulSetStatus sets the set's Status to status. Implementations are required to retry on conflicts,
    	// but fail on other errors. If the returned error is nil set's Status has been successfully set to status.
    	UpdateStatefulSetStatus(ctx context.Context, set *apps.StatefulSet, status *apps.StatefulSetStatus) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 13 20:32:13 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top