Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 414 for pselect (0.17 sec)

  1. pilot/pkg/xds/delta.go

    	// initialization is complete.
    	<-con.InitializedCh()
    
    	for {
    		// Go select{} statements are not ordered; the same channel can be chosen many times.
    		// For requests, these are higher priority (client may be blocked on startup until these are done)
    		// and often very cheap to handle (simple ACK), so we check it first.
    		select {
    		case req, ok := <-con.deltaReqChan:
    			if ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

            // Just a name -> use default project + select tasks with matching name in default project and subprojects
            if (!path.isAbsolute() && path.segmentCount() == 1) {
                return new ProjectResolutionResult(targetBuild, targetBuild.getMutableModel().getDefaultProject().getOwner(), true, path.getName());
            }
    
            // <path>:name -> resolve <path> to a project + select task with matching name in that project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. src/net/lookup_windows.go

    			return
    		}
    		defer releaseThread()
    		runtime.LockOSThread()
    		defer runtime.UnlockOSThread()
    		proto, err := getprotobyname(name)
    		select {
    		case ch <- result{proto: proto, err: err}:
    		case <-ctx.Done():
    		}
    	}()
    	select {
    	case r := <-ch:
    		if r.err != nil {
    			if proto, err := lookupProtocolMap(name); err == nil {
    				return proto, nil
    			}
    			r.err = newDNSError(r.err, name, "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. pilot/pkg/xds/workload_test.go

    		// Creating a pod in the service should send an update as usual
    		createPod(s, "pod", "sa", "127.0.0.1", "node")
    		expect(ads.ExpectResponse(), "Kubernetes//Pod/default/pod")
    
    		// Make service not select workload should also update things
    		createService(s, "svc1", "default", map[string]string{"app": "not-sa"})
    		expect(ads.ExpectResponse(), "Kubernetes//Pod/default/pod", "Kubernetes//Pod/default/pod2")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. internal/s3select/unused-errors.go

    		code:       "ParseEmptySelect",
    		message:    "The SQL expression contains an empty SELECT.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseSelectMissingFrom(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseSelectMissingFrom",
    		message:    "The SQL expression contains a missing FROM after SELECT list.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketConnection.java

                if (max == 0) {
                    return 0;
                }
    
                if (buffer.remaining() == 0) {
                    try {
                        selector.select();
                    } catch (ClosedSelectorException e) {
                        return -1;
                    }
                    if (!selector.isOpen()) {
                        return -1;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/EncryptionService.kt

        private val cacheBuilderFactory: GlobalScopedCacheBuilderFactory,
    ) : EncryptionService {
    
        private
        val secretKey: SecretKey? by lazy {
            produceSecretKey(EncryptionKind.select(startParameter.encryptionRequested))
        }
    
        private
        fun produceSecretKey(encryptionKind: EncryptionKind) =
            secretKeySource(encryptionKind).let { keySource ->
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        const n = nodeId(elem);
        if (n < 0) return;
        if (selected.has(n)) {
          unselect(n);
        } else {
          select(n);
        }
        updateButtons();
      }
    
      function unselect(n) {
        if (setNodeHighlight(n, false)) selected.delete(n);
      }
    
      function select(n, elem) {
        if (setNodeHighlight(n, true)) selected.set(n, true);
      }
    
      function nodeId(elem) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. test/codegen/shift.go

    		// riscv64:"SLL",-"AND",-"SLTIU"
    		// s390x:-"RISBGZ",-"AND",-"LOCGR"
    		// wasm:-"Select",-".*LtU"
    		// arm64:"LSL",-"CSEL"
    		return v << s
    	}
    	panic("shift too large")
    }
    
    func rshGuarded64U(v uint64, s uint) uint64 {
    	if s < 64 {
    		// riscv64:"SRL\t",-"AND",-"SLTIU"
    		// s390x:-"RISBGZ",-"AND",-"LOCGR"
    		// wasm:-"Select",-".*LtU"
    		// arm64:"LSR",-"CSEL"
    		return v >> s
    	}
    	panic("shift too large")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. tests/preload_test.go

    		}
    	}
    
    	CheckUser(t, users2[0], users[0])
    
    	var users3 []User
    	if err := DB.Preload("Account", func(tx *gorm.DB) *gorm.DB {
    		return tx.Table("accounts AS a").Select("a.*")
    	}).Find(&users3, "id IN ?", userIDs).Error; err != nil {
    		t.Errorf("failed to query, got error %v", err)
    	}
    	sort.Slice(users3, func(i, j int) bool {
    		return users2[i].ID < users2[j].ID
    	})
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:00:47 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top