Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 516 for halted (0.08 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/matchresources.go

    }
    
    // WithNamespaceSelector sets the NamespaceSelector field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the NamespaceSelector field is set to the value of the last call.
    func (b *MatchResourcesApplyConfiguration) WithNamespaceSelector(value *v1.LabelSelectorApplyConfiguration) *MatchResourcesApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/permissions/permissions.kt

    /**
     * Forbids [analyze][org.jetbrains.kotlin.analysis.api.analyze] to be called in the given [action].
     *
     * @param description A human-readable description of the [action], which is used to generate error messages when
     *  [analyze][org.jetbrains.kotlin.analysis.api.analyze] is called.
     */
    @OptIn(KaAnalysisApiInternals::class)
    public inline fun <R> forbidAnalysis(description: String, action: () -> R): R {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/paramref.go

    }
    
    // WithName sets the Name field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Name field is set to the value of the last call.
    func (b *ParamRefApplyConfiguration) WithName(value string) *ParamRefApplyConfiguration {
    	b.Name = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/validatingadmissionpolicybindingspec.go

    }
    
    // WithPolicyName sets the PolicyName field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the PolicyName field is set to the value of the last call.
    func (b *ValidatingAdmissionPolicyBindingSpecApplyConfiguration) WithPolicyName(value string) *ValidatingAdmissionPolicyBindingSpecApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/validation.go

    }
    
    // WithExpression sets the Expression field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Expression field is set to the value of the last call.
    func (b *ValidationApplyConfiguration) WithExpression(value string) *ValidationApplyConfiguration {
    	b.Expression = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. callbacks/update.go

    		callMethod(db, func(value interface{}, tx *gorm.DB) (called bool) {
    			if db.Statement.Schema.BeforeSave {
    				if i, ok := value.(BeforeSaveInterface); ok {
    					called = true
    					db.AddError(i.BeforeSave(tx))
    				}
    			}
    
    			if db.Statement.Schema.BeforeUpdate {
    				if i, ok := value.(BeforeUpdateInterface); ok {
    					called = true
    					db.AddError(i.BeforeUpdate(tx))
    				}
    			}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 05:44:55 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskExecutionListener.java

    @DeprecatedInGradleScope
    public interface TaskExecutionListener {
        /**
         * This method is called immediately before a task is executed.
         *
         * @param task The task about to be executed. Never null.
         */
        void beforeExecute(Task task);
    
        /**
         * This method is called immediately after a task has been executed. It is always called, regardless of whether the
         * task completed successfully, or failed with an exception.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. cmd/kube-proxy/app/server_other.go

    )
    
    // platformApplyDefaults is called after parsing command-line flags and/or reading the
    // config file, to apply platform-specific default values to config.
    func (o *Options) platformApplyDefaults(config *proxyconfigapi.KubeProxyConfiguration) {
    }
    
    var unsupportedError = fmt.Errorf(runtime.GOOS + "/" + runtime.GOARCH + "is unsupported")
    
    // platformSetup is called after setting up the ProxyServer, but before creating the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. src/crypto/ecdsa/ecdsa_s390x.go

    	//	+---------------------+
    	//	|   Hashed Message    |
    	//	+---------------------+
    	//	|   Public Key X      |
    	//	+---------------------+
    	//	|   Public Key Y      |
    	//	+---------------------+
    	//	|                     |
    	//	|        ...          |
    	//	|                     |
    	//	+---------------------+
    	// The common components(signatureR, signatureS, hashed message, public key X,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. src/syscall/pwd_plan9.go

    	wdSet bool
    	wdStr string
    )
    
    // Ensure current working directory seen by this goroutine matches
    // the most recent [Chdir] called in any goroutine. It's called internally
    // before executing any syscall which uses a relative pathname. Must
    // be called with the goroutine locked to the OS thread, to prevent
    // rescheduling on a different thread (potentially with a different
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top