Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 408 for setcontext (0.24 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/server.go

    				return err
    			}
    			if err := o.Validate(); err != nil {
    				return err
    			}
    			if err := Run(c.Context(), o); err != nil {
    				return err
    			}
    			return nil
    		},
    	}
    	cmd.SetContext(ctx)
    
    	fs := cmd.Flags()
    	o.AddFlags(fs)
    	return cmd
    }
    
    func Run(ctx context.Context, o *options.CustomResourceDefinitionsServerOptions) error {
    	config, err := o.Config()
    	if err != nil {
    		return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/testFixtures/groovy/org/gradle/platform/base/PlatformBaseSpecification.groovy

        @Rule
        TestNameTestDirectoryProvider testDir = new TestNameTestDirectoryProvider(getClass())
    
        final def project = TestUtil.create(testDir).rootProject()
        @Rule SetRuleContext setContext = new SetRuleContext()
    
        def realize(String name) {
            project.modelRegistry.find(name, ModelType.UNTYPED)
        }
    
        ModelMap<Task> realizeTasks() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/runner/StepContext.kt

    import org.gradle.internal.declarativedsl.objectGraph.AssignmentTrace
    
    
    interface StepContext
    
    
    data class AnalysisStepContext(
        val supportedDocumentChecks: Iterable<DocumentCheck>,
        val supportedResolutionResultHandlers: Iterable<ResolutionResultHandler>
    ) : StepContext
    
    
    data class AnalysisStepResult(
        val evaluationSchema: EvaluationSchema,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SSPContext.java

     */
    package jcifs.smb;
    
    
    import org.bouncycastle.asn1.ASN1ObjectIdentifier;
    
    import jcifs.CIFSException;
    
    
    /**
     * @author mbechler
     *
     */
    public interface SSPContext {
    
        /**
         * @return the signing key for the session
         * 
         * @throws CIFSException
         */
        byte[] getSigningKey () throws CIFSException;
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/BaseCIFSTest.java

        }
    
    
        protected CIFSContext withTestGuestCredentials () {
            return getContext().withGuestCrendentials();
        }
    
    
        protected CIFSContext withAnonymousCredentials () {
            return getContext().withAnonymousCredentials();
        }
    
    
        protected String getTestDomain () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.1K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ExtractData.java

            return metadata.get(key);
        }
    
        public Set<String> getKeySet() {
            return metadata.keySet();
        }
    
        public String getContent() {
            return content;
        }
    
        public void setContent(final String content) {
            this.content = content;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/BsRelatedContent.java

        //                                                                            ========
        public String getContent() {
            checkSpecifiedProperty("content");
            return convertEmptyToNull(content);
        }
    
        public void setContent(String value) {
            registerModifiedProperty("content");
            this.content = value;
        }
    
        public String getCreatedBy() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/utils/tf_type_utils.cc

              [&type](Type) { return IntegerType::get(type.getContext(), 8); })
          .Case<TF::Qint16Type>(
              [&type](Type) { return IntegerType::get(type.getContext(), 16); })
          .Case<TF::Qint32Type>(
              [&type](Type) { return IntegerType::get(type.getContext(), 32); })
          .Case<TF::Quint8Type>([&type](Type) {
            return IntegerType::get(type.getContext(), 8,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/composableFunctionMultiModules2.kt

    // FILE: p3/foo.kt
    package p3
    
    import org.jetbrains.kotlin.fir.plugin.MyComposable
    
    fun setContent(content: @MyComposable () -> Unit): Int {
        content()
        return 3
    }
    
    // MODULE: main(lib)
    // FILE: main.kt
    import org.jetbrains.kotlin.fir.plugin.MyComposable
    import p3.setContent
    
    fun test(): Int {
        return setContent {
            Greeting("test")
        }
    }
    
    @MyComposable
    fun Greeting(name: String) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Feb 26 21:57:23 UTC 2024
    - 542 bytes
    - Viewed (0)
  10. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivatorTest.java

            assertActivation(true, profile, newContext(null, newProperties("1.5")));
            assertActivation(true, profile, newContext(null, newProperties("1.5.0")));
            assertActivation(true, profile, newContext(null, newProperties("1.5.0_09")));
            assertActivation(true, profile, newContext(null, newProperties("1.5.0_09-b03")));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top