Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for setOp (0.06 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

    import spock.lang.Issue
    
    class VersionCatalogExtensionIntegrationTest extends AbstractVersionCatalogIntegrationTest implements PluginDslSupport, VersionCatalogErrorMessages {
    
        def setup() {
            enableProblemsApiCheck()
        }
    
        def "dependencies declared in settings trigger the creation of an extension (notation=#notation)"() {
            settingsFile << """
                dependencyResolutionManagement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    			}
    			ldshlibsyms(ctxt, lib.Shlib)
    		}
    	}
    
    	// Process cgo directives (has to be done before host object loading).
    	ctxt.loadcgodirectives()
    
    	// Conditionally load host objects, or setup for external linking.
    	hostobjs(ctxt)
    	hostlinksetup(ctxt)
    
    	if ctxt.LinkMode == LinkInternal && len(hostobj) != 0 {
    		// If we have any undefined symbols in external
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    		// Determine the listener address if bind is empty
    		// we listen on the service VIP if and only
    		// if the address is an IP address. If its a CIDR, we listen on
    		// 0.0.0.0, and setup a filter chain match for the CIDR range.
    		// As a small optimization, CIDRs with /32 prefix will be converted
    		// into listener address so that there is a dedicated listener for this
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

        public static final String CONFLICT_FOUND_HEADER_MESSAGE = 'Conflict found for the following module:'
        private ResolveTestFixture resolve = new ResolveTestFixture(buildFile, "compile")
    
        def setup() {
            settingsFile << """
                rootProject.name = 'test'
            """
            resolve.expectDefaultConfiguration("runtime")
            resolve.addDefaultVariantDerivationStrategy()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  5. src/math/big/int_test.go

    	if r.Int64() != 10 {
    		t.Errorf("Sqrt(100) = %v, want 10 (aliased output)", r.Int64())
    	}
    }
    
    // We can't test this together with the other Exp tests above because
    // it requires a different receiver setup.
    func TestIssue22830(t *testing.T) {
    	one := new(Int).SetInt64(1)
    	base, _ := new(Int).SetString("84555555300000000000", 10)
    	mod, _ := new(Int).SetString("66666670001111111111", 10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  6. src/crypto/tls/tls_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	defer conn.Close()
    
    	srv := <-srvCh
    	if srv == nil {
    		t.Error(err)
    	}
    
    	// Make sure the client/server is setup correctly and is able to do a typical Write/Read
    	buf := make([]byte, 6)
    	if _, err := srv.Write([]byte("foobar")); err != nil {
    		t.Errorf("Write err: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    }
    
    func (c *Conn) handshakeContext(ctx context.Context) (ret error) {
    	// Fast sync/atomic-based exit if there is no handshake in flight and the
    	// last one succeeded without an error. Avoids the expensive context setup
    	// and mutex for most Read and Write calls.
    	if c.isHandshakeComplete.Load() {
    		return nil
    	}
    
    	handshakeCtx, cancel := context.WithCancel(ctx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    //
    //go:nowritebarrier
    func scanobject(b uintptr, gcw *gcWork) {
    	// Prefetch object before we scan it.
    	//
    	// This will overlap fetching the beginning of the object with initial
    	// setup before we start scanning the object.
    	sys.Prefetch(b)
    
    	// Find the bits for b and the size of the object at b.
    	//
    	// b is either the beginning of an object, in which case this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier.go

    	proxier.needFullSync = true
    	proxier.mu.Unlock()
    
    	proxier.syncProxyRules()
    }
    
    // This is where all of the iptables-save/restore calls happen.
    // The only other iptables rules are those that are setup in iptablesInit()
    // This assumes proxier.mu is NOT held
    func (proxier *Proxier) syncProxyRules() {
    	proxier.mu.Lock()
    	defer proxier.mu.Unlock()
    
    	// don't sync rules till we've received services and endpoints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set_test.go

    		t.Errorf("Unexpected number of create calls.  Expected <= %d, saw %d\n", fakePodControl.CreateLimit*2, fakePodControl.CreateCallCount)
    	}
    }
    
    func TestSyncReplicaSetDormancy(t *testing.T) {
    	// Setup a test server so we can lie about the current state of pods
    	logger, ctx := ktesting.NewTestContext(t)
    	fakeHandler := utiltesting.FakeHandler{
    		StatusCode:    200,
    		ResponseBody:  "{}",
    		SkipRequestFn: skipListerFunc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
Back to top