Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for withOptions (0.14 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDefinitionIntegrationTest.groovy

                task emptyOptions()
                task task
                task withOptions(dependsOn: [nothing, withAction, emptyOptions, task])
                task withOptionsAndAction(dependsOn: withOptions) { doLast {} }
            """
    
            expect:
            succeeds ":emptyOptions", ":nothing", ":task", ":withAction", ":withOptions", ":withOptionsAndAction"
        }
    
        def "can define tasks using task keyword and GString"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 14:43:53 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/InstrumentationCodeGenTest.groovy

            if (Jvm.current().javaVersion.isCompatibleWith(JavaVersion.VERSION_1_9)) {
                return javac().withOptions(COMPILE_OPTIONS + "--release=8")
            }
            return javac().withOptions(COMPILE_OPTIONS)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/poddnsconfig.go

    	}
    	return b
    }
    
    // WithOptions adds the given value to the Options field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the Options field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/flexpersistentvolumesource.go

    func (b *FlexPersistentVolumeSourceApplyConfiguration) WithReadOnly(value bool) *FlexPersistentVolumeSourceApplyConfiguration {
    	b.ReadOnly = &value
    	return b
    }
    
    // WithOptions puts the entries into the Options field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/flexvolumesource.go

    func (b *FlexVolumeSourceApplyConfiguration) WithReadOnly(value bool) *FlexVolumeSourceApplyConfiguration {
    	b.ReadOnly = &value
    	return b
    }
    
    // WithOptions puts the entries into the Options field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

            scriptHandler: ScriptHandler,
            targetScope: ClassLoaderScope,
            baseScope: ClassLoaderScope,
            topLevelScript: Boolean,
            options: EvalOptions
        ) {
            withOptions(options) {
                interpreter.eval(
                    target,
                    scriptSource,
                    scriptSourceHasher.hash(scriptSource),
                    scriptHandler,
                    targetScope,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. pkg/log/config.go

    	_ = zap.RedirectStdLog(defaultZapLogger)
    
    	// capture gRPC logging
    	if options.logGRPC {
    		grpclog.SetLoggerV2(zapgrpc.NewLogger(zap.New(grpcLogger, opts...).WithOptions(zap.AddCallerSkip(3))))
    	}
    
    	// capture klog (Kubernetes logging) through our logging
    	configureKlog.Do(func() {
    		klog.SetLogger(NewLogrAdapter(KlogScope))
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		}
    	}
    }
    
    func TestRequestsWithInvalidQuery(t *testing.T) {
    	storage := map[string]rest.Storage{}
    
    	storage["simple"] = &SimpleRESTStorage{expectedResourceNamespace: "default"}
    	storage["withoptions"] = GetWithOptionsRESTStorage{}
    
    	var handler = handleInternal(storage, admissionControl, nil)
    	server := httptest.NewServer(handler)
    	defer server.Close()
    
    	for i, test := range []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    i.ignore?[]:i.glob?h.env.ROLLUP_WATCH==="true"?[{type:"dependency",file:i.base}]:[{type:"dir-dependency",dir:i.base,glob:i.glob}]:[{type:"dependency",file:i.base}]}var zd=C(()=>{l()});function Vd(i,e){return{handler:i,config:e}}var Ud,Wd=C(()=>{l();Vd.withOptions=function(i,e=()=>({})){let t=function(r){return{__options:r,handler:i(r),config:e(r)}};return t.__isOptionsFunction=!0,t.__pluginFunction=i,t.__configFunction=e,t};Ud=Vd});var ho={};Ae(ho,{default:()=>PC});var PC,mo=C(()=>{l();Wd();PC=Ud});var ...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  10. RELEASE.md

    *   tf.data:
        *   tf.data users can now represent, get, and set options of TensorFlow
            input pipelines using `tf.data.Options()`, `tf.data.Dataset.options()`,
            and `tf.data.Dataset.with_options()` respectively.
        *   New `tf.data.Dataset.reduce()` API allows users to reduce a finite
            dataset to a single element using a user-provided reduce function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top