Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 83 for pselect (0.21 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

                Projects should only list the license(s) that applies to the project
                and not the licenses that apply to dependencies.
                If multiple licenses are listed, it is assumed that the user can select
                any of them, not that they must accept all.
                ]]>
              </description>
              <association>
                <type>License</type>
                <multiplicity>*</multiplicity>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        )
        server.enqueue(
          MockResponse(code = 407),
        )
        client =
          client.newBuilder()
            .proxySelector(
              object : ProxySelector() {
                override fun select(uri: URI): List<Proxy> = listOf(server.toProxyAddress())
    
                override fun connectFailed(
                  uri: URI,
                  socketAddress: SocketAddress,
                  e: IOException,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector_test.go

    	}
    
    	workerLockAcquired := make(chan struct{})
    	go func() {
    		workerLock.Lock()
    		defer workerLock.Unlock()
    		close(workerLockAcquired)
    	}()
    	select {
    	case <-workerLockAcquired:
    		return nil
    	case <-time.After(t):
    		return fmt.Errorf("workerLock blocked for at least %v", t)
    	}
    }
    
    type fakeServerResources struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		return true
    	}
    	// match: (MOVBUreg x:(Select0 (LoweredAtomicLoad8 _ _)))
    	// result: (MOVDreg x)
    	for {
    		x := v_0
    		if x.Op != OpSelect0 {
    			break
    		}
    		x_0 := x.Args[0]
    		if x_0.Op != OpRISCV64LoweredAtomicLoad8 {
    			break
    		}
    		v.reset(OpRISCV64MOVDreg)
    		v.AddArg(x)
    		return true
    	}
    	// match: (MOVBUreg x:(Select0 (LoweredAtomicCas32 _ _ _ _)))
    	// result: (MOVDreg x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      DenseIntElementsAttr cond_attr;
      if (!matchPattern(op.getCond(), m_Constant(&cond_attr))) return failure();
    
      // Cond value must be a scalar.
      if (cond_attr.getNumElements() != 1) return failure();
    
      // Select a branch function.
      bool cond = cond_attr.getSplatValue<BoolAttr>().getValue();
      FlatSymbolRefAttr func =
          cond ? op.getThenBranchAttr() : op.getElseBranchAttr();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  6. cmd/object-handlers.go

    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		}
    		return
    	}
    	defer s3Select.Close()
    
    	if err = s3Select.Open(objectRSC); err != nil {
    		if serr, ok := err.(s3select.SelectError); ok {
    			encodedErrorResponse := encodeResponse(APIErrorResponse{
    				Code:       serr.ErrorCode(),
    				Message:    serr.ErrorMessage(),
    				BucketName: bucket,
    				Key:        object,
    				Resource:   r.URL.Path,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        details == 'Trying to write an output to a read-only location which is for Gradle internal use only'
                        solutions == ['Select a different output location']
                        additionalData.asMap == [
                            'typeName': 'org.gradle.api.DefaultTask',
                            'propertyName': 'output',
                        ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    	par := cfg.BuildP
    	if cfg.BuildN {
    		par = 1
    	}
    	for i := 0; i < par; i++ {
    		wg.Add(1)
    		go func() {
    			ctx := trace.StartGoroutine(ctx)
    			defer wg.Done()
    			for {
    				select {
    				case _, ok := <-b.readySema:
    					if !ok {
    						return
    					}
    					// Receiving a value from b.readySema entitles
    					// us to take from the ready queue.
    					b.exec.Lock()
    					a := b.ready.pop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal_test.go

    		timeoutTime := time.Now().Add(2 * time.Second)
    		for now := time.Now(); timeoutTime.After(now); now = time.Now() {
    			sleepUntil := timeoutTime.Sub(now)
    			select {
    			case <-tc.processed:
    				// drain the chan of any sent events to keep it from filling before the timeout
    			case <-time.After(sleepUntil):
    				// timeout reached, ready to verifyResults
    			}
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  10. src/net/http/server.go

    		}
    		return interval
    	}
    
    	timer := time.NewTimer(nextPollInterval())
    	defer timer.Stop()
    	for {
    		if srv.closeIdleConns() {
    			return lnerr
    		}
    		select {
    		case <-ctx.Done():
    			return ctx.Err()
    		case <-timer.C:
    			timer.Reset(nextPollInterval())
    		}
    	}
    }
    
    // RegisterOnShutdown registers a function to call on [Server.Shutdown].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top