Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 8,423 for default_ (0.14 sec)

  1. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseScopeAttributeIntegrationTest.groovy

                        java {
                            srcDirs 'src/default_/java'
                        }
                    }
                }
            """
            file('src/default/java').mkdirs()
            file('src/default_/java').mkdirs()
    
    
            when:
            run 'eclipse'
    
            then:
            EclipseClasspathFixture classpath = classpath('.')
            classpath.output == DEFAULT_PROJECT_OUTPUT_PATH
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 10 13:19:47 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    	if s.Assign != nil {
    		b.add(s.Assign)
    	}
    
    	done := b.newBlock(KindSwitchDone, s)
    	if label != nil {
    		label._break = done
    	}
    	var default_ *ast.CaseClause
    	for _, clause := range s.Body.List {
    		cc := clause.(*ast.CaseClause)
    		if cc.List == nil {
    			default_ = cc
    			continue
    		}
    		body := b.newBlock(KindSwitchCaseBody, cc)
    		var next *Block
    		for _, casetype := range cc.List {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/language/match.go

    		o(m)
    	}
    	if len(supported) == 0 {
    		m.default_ = &haveTag{}
    		return m
    	}
    	// Add supported languages to the index. Add exact matches first to give
    	// them precedence.
    	for i, tag := range supported {
    		tt := tag.tag()
    		pair, _ := makeHaveTag(tt, i)
    		m.header(tt.LangID).addIfNew(pair, true)
    		m.supported = append(m.supported, &pair)
    	}
    	m.default_ = m.header(supported[0].lang()).haveTags[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/cc_op_gen_util.cc

            !IsEmptyList(default_value.list())) {
          // Non-empty lists need static storage for their defaults. Define a
          // function with static local variable that stores the array.
          strings::StrAppend(&defaults_static_storage, "    static ",
                             attr_type_name, " Default_", api_def_attr.rename_to(),
                             "() {\n");
          strings::StrAppend(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        }
    
        ValueHolder* const new_holder = new ValueHolder(default_);
        ThreadLocalValueHolderBase* const holder_base = new_holder;
        GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base));
        return new_holder->pointer();
      }
    
      // A key pthreads uses for looking up per-thread values.
      const pthread_key_t key_;
      const T default_;  // The default value for each thread.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        }
    
        ValueHolder* const new_holder = new ValueHolder(default_);
        ThreadLocalValueHolderBase* const holder_base = new_holder;
        GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base));
        return new_holder->pointer();
      }
    
      // A key pthreads uses for looking up per-thread values.
      const pthread_key_t key_;
      const T default_;  // The default value for each thread.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    Let's say you have different deployment settings depending on the environment: local development (the default), a test environment, and production.
    To add profile-like behavior, you first create build scripts for each environment in the project root: `profile-default.gradle`, `profile-test.gradle`, and `profile-prod.gradle`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta3/defaults.go

    	DefaultAPIBindPort = 6443
    	// DefaultCertificatesDir defines default certificate directory
    	DefaultCertificatesDir = "/etc/kubernetes/pki"
    	// DefaultImageRepository defines default image registry
    	// (previously this defaulted to k8s.gcr.io)
    	DefaultImageRepository = "registry.k8s.io"
    	// DefaultManifestsDir defines default manifests directory
    	DefaultManifestsDir = "/etc/kubernetes/manifests"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/config/v1alpha1/defaults.go

    // RecommendedDefaultPersistentVolumeBinderControllerConfiguration defaults a pointer to a
    // PersistentVolumeBinderControllerConfiguration struct. This will set the recommended default
    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/v1beta1/defaults.go

    }
    
    // SetDefaults_ValidatingAdmissionPolicySpec sets defaults for ValidatingAdmissionPolicySpec
    func SetDefaults_ValidatingAdmissionPolicySpec(obj *admissionregistrationv1beta1.ValidatingAdmissionPolicySpec) {
    	if obj.FailurePolicy == nil {
    		policy := admissionregistrationv1beta1.Fail
    		obj.FailurePolicy = &policy
    	}
    }
    
    // SetDefaults_MatchResources sets defaults for MatchResources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 20:24:09 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top