Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 384 for pselect (0.14 sec)

  1. cni/pkg/config/config.go

    	// init container termination message and exit code.
    	SidecarAnnotation  string
    	InitContainerName  string
    	InitTerminationMsg string
    	InitExitCode       int
    
    	// Label and field selectors to select pods managed by race repair.
    	LabelSelectors string
    	FieldSelectors string
    }
    
    func (c InstallConfig) String() string {
    	var b strings.Builder
    	b.WriteString("CNINetDir: " + c.CNINetDir + "\n")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    		Description:    "Other expressions are not allowed in the SELECT list when '*' is used without dot notation in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseCannotMixSqbAndWildcardInSelectList: {
    		Code:           "ParseCannotMixSqbAndWildcardInSelectList",
    		Description:    "Cannot mix [] and * in the same expression in a SELECT list in SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  3. src/reflect/all_test.go

    		}
    	}()
    	// Should panic
    	_, _, _ = Select(sCases)
    }
    
    func TestSelectNop(t *testing.T) {
    	// "select { default: }" should always return the default case.
    	chosen, _, _ := Select([]SelectCase{{Dir: SelectDefault}})
    	if chosen != 0 {
    		t.Fatalf("expected Select to return 0, but got %#v", chosen)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller.go

    	nodeSelectorsForServices map[host.Name]labels.Instance
    	// map of node name and its address+labels - this is the only thing we need from nodes
    	// for vm to k8s or cross cluster. When node port services select specific nodes by labels,
    	// we run through the label selectors here to pick only ones that we need.
    	// Only nodes with ExternalIP addresses are included in this map !
    	nodeInfoMap map[string]kubernetesNode
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/security/oauth2-scopes.md

    <img src="/img/tutorial/security/image11.png">
    
    If you don't select any scope, you will be "authenticated", but when you try to access `/users/me/` or `/users/me/items/` you will get an error saying that you don't have enough permissions. You will still be able to access `/status/`.
    
    And if you select the scope `me` but not the scope `items`, you will be able to access `/users/me/` but not `/users/me/items/`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  6. pkg/kubelet/config/config_test.go

    	"k8s.io/kubernetes/pkg/securitycontext"
    	"k8s.io/kubernetes/test/utils/ktesting"
    )
    
    const (
    	TestSource = "test"
    )
    
    func expectEmptyChannel(t *testing.T, ch <-chan interface{}) {
    	select {
    	case update := <-ch:
    		t.Errorf("Expected no update in channel, Got %v", update)
    	default:
    	}
    }
    
    type sortedPods []*v1.Pod
    
    func (s sortedPods) Len() int {
    	return len(s)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    		return err
    	}
    	defer uploader.Close()
    	return uploader.Run()
    }
    
    // uploader encapsulates a single upload operation, carrying parameters and
    // shared state.
    type uploader struct {
    	// config is used to select counters to upload.
    	config        *telemetry.UploadConfig //
    	configVersion string                  // version of the config
    	dir           telemetry.Dir           // the telemetry dir to process
    
    	uploadServerURL string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. docs/debugging/reorder-disks/main.go

    	flag.Parse()
    
    	localDisks, err := filterLocalDisks(node, args)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	if len(localDisks) == 0 {
    		log.Fatal("Fix --local-node-name or/and --args to select local disks.")
    	}
    
    	format, err := getFormatJSON(localDisks[0].path)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	setSize := len(format.XL.Sets[0])
    
    	expectedDisksName := make(map[string]string)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/selection_predicate.go

    			return nil, nil, err
    		}
    		if err := fieldMutator(obj, fieldSet); err != nil {
    			return nil, nil, err
    		}
    		return labelSet, fieldSet, nil
    	}
    }
    
    // SelectionPredicate is used to represent the way to select objects from api storage.
    type SelectionPredicate struct {
    	Label               labels.Selector
    	Field               fields.Selector
    	GetAttrs            AttrFunc
    	IndexLabels         []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompilerFacility.kt

            // descriptors must be available in the binding context for the IR backend. Note that the full bytecode is only generated for
            // `file` because of filtering in `generateClassFilter`, while only select declarations from other files are generated if needed
            // by the backend.
            val inlineAnalyzer = InlineFunctionAnalyzer(analysisContext, analyzeOnlyReifiedInlineFunctions = disableInline)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top