Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for regular (0.18 sec)

  1. cmd/iam-store.go

    		setDefaultCannedPolicies(newCache.iamPolicyDocsMap)
    
    		if store.getUsersSysType() == MinIOUsersSysType {
    			bootstrapTraceMsg("loading regular users")
    			if err := store.loadUsers(ctx, regUser, newCache.iamUsersMap); err != nil {
    				return err
    			}
    			bootstrapTraceMsg("loading regular groups")
    			if err := store.loadGroups(ctx, newCache.iamGroupsMap); err != nil {
    				return err
    			}
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    control the execution of any test:
    
    	-bench regexp
    	    Run only those benchmarks matching a regular expression.
    	    By default, no benchmarks are run.
    	    To run all benchmarks, use '-bench .' or '-bench=.'.
    	    The regular expression is split by unbracketed slash (/)
    	    characters into a sequence of regular expressions, and each
    	    part of a benchmark's identifier must match the corresponding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    It demonstrates the two options for renaming:
    
    1. Using a regular expression
    2. Using a closure
    
    Regular expressions are a flexible approach to renaming, particularly as Gradle supports regex groups that allow you to remove and replace parts of the source filename.
    The following example shows how you can remove the string "-staging" from any filename that contains it using a simple regular expression:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    	tg.t.Helper()
    	if !tg.ran {
    		tg.t.Fatal("internal testsuite error: stdout called before run")
    	}
    	return tg.stderr.String()
    }
    
    // doGrepMatch looks for a regular expression in a buffer, and returns
    // whether it is found. The regular expression is matched against
    // each line separately, as with the grep command.
    func (tg *testgoData) doGrepMatch(match string, b *bytes.Buffer) bool {
    	tg.t.Helper()
    	if !tg.ran {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    pre.snippet .highlighted {
        background-color: var(--snippet-highlight-color);
        border-radius: 10%;
    }
    
    
    /*
     * Custom changes
     */
    
    /*
     * Lato (normal, regular)
     */
     @font-face {
         font-family: Lato;
         font-weight: 400;
         font-style: normal;
         src: url("https://assets.gradle.com/lato/fonts/lato-normal/lato-normal.woff2") format("woff2"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    //
    // The RSS goal is based on the current heap goal with a small overhead
    // to accommodate non-determinism in the allocator.
    //
    // The pacing is based on scavengePageRate, which applies to both regular and
    // huge pages. See that constant for more information.
    //
    // Must be called whenever GC pacing is updated.
    //
    // mheap_.lock must be held or the world must be stopped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// IndexerFuncs is used for optimizing amount of watchers that
    	// needs to process an incoming event.
    	IndexerFuncs storage.IndexerFuncs
    
    	// Indexers is used to accelerate the list operation, falls back to regular list
    	// operation if no indexer found.
    	Indexers *cache.Indexers
    
    	// NewFunc is a function that creates new empty object storing a object of type Type.
    	NewFunc func() runtime.Object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	}
    	m.recorder.Event(ref, eventType, reason, eventMessage)
    }
    
    // startSpec wraps the spec required to start a container, either a regular/init container
    // or an ephemeral container. Ephemeral containers contain all the fields of regular/init
    // containers, plus some additional fields. In both cases startSpec.container will be set.
    type startSpec struct {
    	container          *v1.Container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/strategy_test.go

    	}
    }
    
    func TestEphemeralContainerStrategyValidateUpdate(t *testing.T) {
    
    	test := []struct {
    		name   string
    		newPod *api.Pod
    		oldPod *api.Pod
    	}{
    		{
    			name: "add ephemeral container to regular pod and expect success",
    			oldPod: &api.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "test-pod",
    					Namespace:       "test-ns",
    					ResourceVersion: "1",
    				},
    				Spec: api.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    				ContainersToStart:     []int{},
    				ContainersToKill:      getKillMapWithInitContainers(basePod, baseStatus, []int{}),
    			},
    		},
    		"restart terminated restartable init container and regular containers": {
    			mutatePodFn: func(pod *v1.Pod) { pod.Spec.RestartPolicy = v1.RestartPolicyAlways },
    			mutateStatusFn: func(pod *v1.Pod, status *kubecontainer.PodStatus) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top