Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for alternate (0.15 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/variants/GradlePluginWithVariantsPublicationIntegrationTest.groovy

                }
    
                group = "com.example"
                version = "1.0"
    
                // Add an alternate variant
                def alternate = sourceSets.create('alternate')
                java {
                    registerFeature(alternate.name) {
                        usingSourceSet(alternate)
                        capability(project.group.toString(), project.name, project.version.toString())
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/graph_builder.go

    				// this alternate is the first following verifiedAbsentIdentity lexically
    				firstFollowing = &ref
    			}
    		}
    	}
    
    	// return the first alternate identity following the verified absent identity, if there is one
    	if firstFollowing != nil {
    		return firstFollowing
    	}
    	// otherwise return the first alternate identity
    	return first
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. src/runtime/signal_unix.go

    // thread's alternate signal stack and signal mask.
    func minitSignals() {
    	minitSignalStack()
    	minitSignalMask()
    }
    
    // minitSignalStack is called when initializing a new m to set the
    // alternate signal stack. If the alternate signal stack is not set
    // for the thread (the normal case) then set the alternate signal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

         * create an {@link Action} from the given CLI args, and handles the logic for deciding whether or not to continue processing
         * based on whether the result is a {@link ContinuingAction} or not.  It allows for injecting alternate Creators which
         * won't actually attempt to run a build via the containing class' {@link #createBuildActionFactoryActionCreator(ServiceRegistry, List)}
         * method - this is why this class is not {@code static}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. cmd/postpolicyform.go

    					return parsedPolicy, fmt.Errorf("Unknown type %s of conditional field value %s found in POST policy form", reflect.TypeOf(condt).String(), condt)
    				}
    				// {"acl": "public-read" } is an alternate way to indicate - [ "eq", "$acl", "public-read" ]
    				// In this case we will just collapse this into "eq" for all use cases.
    				parsedPolicy.Conditions.Policies = append(parsedPolicy.Conditions.Policies, struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. pkg/apis/apps/v1beta1/defaults_test.go

    					Selector: &metav1.LabelSelector{
    						MatchLabels:      map[string]string{"foo": "bar"},
    						MatchExpressions: []metav1.LabelSelectorRequirement{},
    					},
    				},
    			},
    		},
    		{
    			name: "Alternate update strategy",
    			original: &appsv1beta1.StatefulSet{
    				Spec: appsv1beta1.StatefulSetSpec{
    					Template: defaultTemplate,
    					UpdateStrategy: appsv1beta1.StatefulSetUpdateStrategy{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    		LoopbackClientBindAddressOverride string
    	}{
    		"only one cert": {
    			Cert: TestCertSpec{
    				host: "localhost",
    				ips:  []string{"127.0.0.1"},
    			},
    			ExpectedCertIndex: -1,
    		},
    		"cert with multiple alternate names": {
    			Cert: TestCertSpec{
    				host:  "localhost",
    				names: []string{"test.com"},
    				ips:   []string{"127.0.0.1"},
    			},
    			ExpectedCertIndex: -1,
    			ServerName:        "test.com",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/start.go

    	//
    	// (This feature is expected to be used only by gopls.
    	// Longer term, the go command may become the sole program
    	// responsible for uploading.)
    	Upload bool
    
    	// TelemetryDir, if set, will specify an alternate telemetry
    	// directory to write data to. If not set, it uses the default
    	// directory.
    	// This field is intended to be used for isolating testing environments.
    	TelemetryDir string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. src/os/signal/doc.go

    SA_ONSTACK flag with sigaction. Failing to do so is likely to cause
    the program to crash if the signal is received. Go programs routinely
    run with a limited stack, and therefore set up an alternate signal
    stack.
    
    If the non-Go code installs a signal handler for any of the
    synchronous signals (SIGBUS, SIGFPE, SIGSEGV), then it should record
    the existing Go signal handler. If those signals occur while
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. src/unsafe/unsafe.go

    //
    //	var s string
    //	hdr := (*reflect.StringHeader)(unsafe.Pointer(&s)) // case 1
    //	hdr.Data = uintptr(unsafe.Pointer(p))              // case 6 (this case)
    //	hdr.Len = n
    //
    // In this usage hdr.Data is really an alternate way to refer to the underlying
    // pointer in the string header, not a uintptr variable itself.
    //
    // In general, [reflect.SliceHeader] and [reflect.StringHeader] should be used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top