Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 230 for subname (0.12 sec)

  1. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtSdkModuleImpl.kt

        override val contentScope: GlobalSearchScope,
        override val platform: TargetPlatform,
        override val project: Project,
        private val binaryRoots: Collection<Path>,
        override val sdkName: String,
    ) : KtSdkModule, KtModuleWithPlatform {
        override val transitiveDependsOnDependencies: List<KtModule> by lazy {
            computeTransitiveDependsOnDependencies(directDependsOnDependencies)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 15:47:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/storage/eviction.go

    		// we cannot ignored the PDB for this pod, so this is the fall through case.
    	}
    
    	var rtStatus *metav1.Status
    	var pdbName string
    	updateDeletionOptions := false
    
    	err = func() error {
    		pdbs, err := r.getPodDisruptionBudgets(ctx, pod)
    		if err != nil {
    			return err
    		}
    
    		if len(pdbs) > 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 11:58:48 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelPropertyTargetingRuleIntegrationTest.groovy

                interface Platform {
                    OperatingSystem getOperatingSystem()
                }
    
                @Managed
                interface OperatingSystem {
                    String getName()
                    void setName(String name)
                }
    
                class RulePlugin extends RuleSource {
                    @Model
                    void platform(Platform platform) {
                        platform.operatingSystem.name = "windows"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/mail/CrawlerPostcard.java

        }
    
        /**
         * Set the value of jobname, used in parameter comment. <br>
         * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty.
         * @param jobname The parameter value of jobname. (NotNull)
         */
        public void setJobname(String jobname) {
            registerVariable("jobname", jobname);
        }
    
        /**
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/health.go

    		klog.V(2).Infof("Job %q in the namespace %q is not yet complete, retrying", jobName, ns)
    		return false, nil
    	})
    	if err != nil {
    		return errors.Wrapf(lastError, "Job %q in the namespace %q did not complete in %v", jobName, ns, timeout)
    	}
    
    	klog.V(2).Infof("Job %q in the namespace %q completed", jobName, ns)
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/binding/DefaultStructBindingsStoreTest.groovy

    - Method DefaultStructBindingsStoreTest.ProtectedAbstractMethods.setName(java.lang.String) is not a valid method: Protected and private methods are not supported."""
        }
    
        @Managed
        static abstract class ProtectedAndPrivateNonAbstractMethods {
            protected String getName() {
                return null;
            }
    
            private void setName(String name) {}
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/build.gradle

                    binaries.withType(StaticLibraryBinary) {
                        def libName = targetPlatform.operatingSystem.windows ? 'util.lib' : 'libutil.a'
                        staticLibraryFile = file("3rd-party-lib/util/build/libs/util/static/${buildType.name}/${libName}")
                    }
                    binaries.withType(SharedLibraryBinary) {
                        def os = targetPlatform.operatingSystem
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/user/cbean/ca/bs/BsUserCA.java

        }
    
        public void setSurname_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setSurname_Terms("surname", opLambda, null);
        }
    
        public void setSurname_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsUserCA> aggsLambda) {
            setSurname_Terms("surname", opLambda, aggsLambda);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 212.4K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/profiles/ProfilesConversionUtils.java

                if (profileProp != null) {
                    ActivationProperty prop = new ActivationProperty();
    
                    prop.setName(profileProp.getName());
                    prop.setValue(profileProp.getValue());
    
                    activation.setProperty(prop);
                }
    
                ActivationOS profileOs = profileActivation.getOs();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/common/call.go

    type EchoClientProvider func() (*echoclient.Client, error)
    
    func ForwardEcho(srcName string, from echo.Caller, opts echo.CallOptions, clientProvider EchoClientProvider) (echo.CallResult, error) {
    	if err := opts.FillDefaults(); err != nil {
    		return echo.CallResult{}, err
    	}
    
    	res, err := callInternal(srcName, from, opts, func(req *proto.ForwardEchoRequest) (echoclient.Responses, error) {
    		c, err := clientProvider()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top