Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 345 for GetOptions (0.19 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/AbstractScalaCompile.java

            return scalaCompileOptions;
        }
    
        /**
         * Returns the Java compilation options.
         */
        @Nested
        @Override
        public CompileOptions getOptions() {
            return compileOptions;
        }
    
        abstract protected Compiler<ScalaJavaJointCompileSpec> getCompiler(ScalaJavaJointCompileSpec spec);
    
        @TaskAction
        public void compile() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/bootstraptoken/node/token.go

    	for _, token := range tokens {
    
    		secretName := bootstraputil.BootstrapTokenSecretName(token.Token.ID)
    		secret, err := client.CoreV1().Secrets(metav1.NamespaceSystem).Get(context.TODO(), secretName, metav1.GetOptions{})
    		if secret != nil && err == nil && failIfExists {
    			return errors.Errorf("a token with id %q already exists", token.Token.ID)
    		}
    
    		updatedOrNewSecret := bootstraptokenv1.BootstrapTokenToSecret(&token)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/internal/GenerateScaladoc.java

            args.add(parameters.getOutputDirectory().get().getAsFile().getAbsolutePath());
    
            args.add("-classpath");
            args.add(parameters.getClasspath().getAsPath());
    
            args.addAll(parameters.getOptions().get());
    
            List<String> sourceFiles = new ArrayList<>();
            for (File sourceFile : parameters.getSources().getAsFileTree().getFiles()) {
                sourceFiles.add(sourceFile.getAbsolutePath());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. pkg/registry/core/resourcequota/storage/storage_test.go

    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	object, err := storage.Get(ctx, "foo", &metav1.GetOptions{})
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	actual := object.(*api.ResourceQuota)
    	if actual.Name != resourcequota.Name {
    		t.Errorf("unexpected resourcequota: %#v", actual)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. pkg/registry/core/node/storage/storage.go

    	// we don't destroy it here explicitly.
    }
    
    // Get retrieves the object from the storage. It is required to support Patch.
    func (r *StatusREST) Get(ctx context.Context, name string, options *metav1.GetOptions) (runtime.Object, error) {
    	return r.store.Get(ctx, name, options)
    }
    
    // Update alters the status subset of an object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 20:38:11 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storageversion/updater.go

    	UpdateStatus(context.Context, *v1alpha1.StorageVersion, metav1.UpdateOptions) (*v1alpha1.StorageVersion, error)
    	Get(context.Context, string, metav1.GetOptions) (*v1alpha1.StorageVersion, error)
    }
    
    // SetCommonEncodingVersion updates the CommonEncodingVersion and the AllEncodingVersionsEqual
    // condition based on the StorageVersions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/zz_generated.deepcopy.go

    func (in *GetOptions) DeepCopyInto(out *GetOptions) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GetOptions.
    func (in *GetOptions) DeepCopy() *GetOptions {
    	if in == nil {
    		return nil
    	}
    	out := new(GetOptions)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:25 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestFramework.java

        }
    
        @Override
        public boolean getUseDistributionDependencies() {
            return useImplementationDependencies;
        }
    
        @Override
        public JUnitOptions getOptions() {
            return options;
        }
    
        void setOptions(JUnitOptions options) {
            this.options = options;
        }
    
        @Override
        public JUnitDetector getDetector() {
            return detector;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. pkg/test/framework/components/crd/gateway.go

    	return retry.UntilSuccess(func() error {
    		for _, c := range ctx.Clusters().Configs() {
    			_, err := c.GatewayAPI().GatewayV1beta1().GatewayClasses().Get(context.Background(), "istio", metav1.GetOptions{})
    			if err != nil {
    				return err
    			}
    			crdl, err := c.Ext().ApiextensionsV1().CustomResourceDefinitions().List(context.Background(), metav1.ListOptions{})
    			if err != nil {
    				return err
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 17:54:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*url.Values)(nil), (*GetOptions)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_url_Values_To_v1_GetOptions(a.(*url.Values), b.(*GetOptions), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:25 UTC 2023
    - 21.6K bytes
    - Viewed (0)
Back to top