Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 196 for name12 (0.28 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/modifiers/Names.java

    import com.google.common.base.Joiner;
    
    import java.util.Locale;
    
    class Names {
        static String displayNameFor(Enum<?> value) {
            String[] parts = value.name().toLowerCase(Locale.US).split("_");
            return Joiner.on(' ').join(parts);
        }
    
        static String idFor(Enum<?> value) {
            String[] parts = value.name().toLowerCase(Locale.US).split("_");
            return Joiner.on('-').join(parts);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/names/names.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package names
    
    const (
    	PrioritySort                    = "PrioritySort"
    	DefaultBinder                   = "DefaultBinder"
    	DefaultPreemption               = "DefaultPreemption"
    	DynamicResources                = "DynamicResources"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 14:11:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/namer.go

    	name, err = n.Namer.Name(obj)
    	if err != nil {
    		return "", "", err
    	}
    	if len(name) == 0 {
    		return "", "", errEmptyName
    	}
    	namespace, err = n.Namer.Namespace(obj)
    	if err != nil {
    		return "", "", err
    	}
    	return namespace, name, err
    }
    
    // errEmptyName is returned when API requests do not fill the name section of the path.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 14 10:11:56 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue62157.go

    	f(B, b, a)
    
    	// Differently named channel types conflict irrespective of channel direction.
    	f(A, B /* ERROR "type namedB of B does not match inferred type namedA for T" */)
    	f(B, A /* ERROR "type namedA of A does not match inferred type namedB for T" */)
    
    	// Ensure that all combinations of directional and
    	// bidirectional channels with a named directional
    	// channel lead to the correct (named) directional
    	// channel.
    	B = f(a, b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 23:22:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/ClientModuleDependencySpec.groovy

            new DefaultClientModule(group, name, version, configuration)
        }
    
        def "not equal with different module dependencies"() {
            when:
            def dep1 = createDependency("group1", "name1", "version1", null)
            def dep2 = createDependency("group1", "name1", "version1", null)
            dep2.addDependency(Mock(ModuleDependency))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 10 08:54:53 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/names.go

    // to the rules documented on the type.
    func ValidateClusterTrustBundleName(signerName string) func(name string, prefix bool) []string {
    	return func(name string, isPrefix bool) []string {
    		if signerName == "" {
    			if strings.Contains(name, ":") {
    				return []string{"ClusterTrustBundle without signer name must not have \":\" in its name"}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export_test.cc

          R"pb(node {
                 name: "foo",
                 op: "_Arg",
                 attr {
                   key: "tf_saved_model.index_path",
                   value { list { s: "__tf_file_prefix" } }
                 }
               })pb",
          &graph_def));
    
      // Restore op's name should start with "restore_op" and the save op's name
      // should start with "tf_quant__save_op".
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/controller_ref_test.go

    	controllerRef.BlockOwnerDeletion = nil
    	var falseRef = false
    	obj2 := &metaObj{
    		ObjectMeta: ObjectMeta{
    			UID:  "uid2",
    			Name: "name1",
    			OwnerReferences: []OwnerReference{
    				{
    					Name:       "owner1",
    					Controller: &falseRef,
    				},
    				*controllerRef,
    				{
    					Name:       "owner2",
    					Controller: &falseRef,
    				},
    			},
    		},
    	}
    
    	if GetControllerOf(obj1) != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 05:14:33 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. api/maven-api-di/src/main/java/org/apache/maven/api/di/Named.java

    import java.lang.annotation.Retention;
    
    import static java.lang.annotation.ElementType.*;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    @Qualifier
    @Retention(RUNTIME)
    @Documented
    public @interface Named {
        String value() default "";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/named.go

    func (t *Named) methodIndex(name string, foldCase bool) int {
    	if name == "_" {
    		return -1
    	}
    	if foldCase {
    		for i, m := range t.methods {
    			if strings.EqualFold(m.name, name) {
    				return i
    			}
    		}
    	} else {
    		for i, m := range t.methods {
    			if m.name == name {
    				return i
    			}
    		}
    	}
    	return -1
    }
    
    // Underlying returns the [underlying type] of the named type t, resolving all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top