Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 7,138 for sameId (0.38 sec)

  1. pkg/scheduler/framework/runtime/registry.go

    type Registry map[string]PluginFactory
    
    // Register adds a new plugin to the registry. If a plugin with the same name
    // exists, it returns an error.
    func (r Registry) Register(name string, factory PluginFactory) error {
    	if _, ok := r[name]; ok {
    		return fmt.Errorf("a plugin named %v already exists", name)
    	}
    	r[name] = factory
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/go/internal/gcimporter/gcimporter_test.go

    		}
    
    		if named, _ := obj.Type().(*types.Named); named != nil {
    			verifyInterfaceMethodRecvs(t, named, 0)
    		}
    	}
    }
    
    // verifyInterfaceMethodRecvs verifies that method receiver types
    // are named if the methods belong to a named interface type.
    func verifyInterfaceMethodRecvs(t *testing.T, named *types.Named, level int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/struct.go

    		// Fields declared syntactically with the same type (e.g.: a, b, c T)
    		// share the same type expression. Only check type if it's a new type.
    		if i == 0 || f.Type != prev {
    			typ = check.varType(f.Type)
    			prev = f.Type
    		}
    		tag = ""
    		if i < len(e.TagList) {
    			tag = check.tag(e.TagList[i])
    		}
    		if f.Name != nil {
    			// named field
    			add(f.Name, false)
    		} else {
    			// embedded field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_optimize_global_tensors.mlir

      // CHECK: "tf_saved_model.global_tensor"() <{
      // CHECK-SAME: is_mutable
      // CHECK-SAME: }> : () -> ()
      "tf_saved_model.global_tensor"() { is_mutable, sym_name = "v", type = tensor<f32>, value = dense<42.> : tensor<f32> } : () -> ()
    
      // CHECK: "tf_saved_model.global_tensor"() <{
      // CHECK-SAME: is_mutable
      // CHECK-SAME: }> : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. docs/tls/kubernetes/README.md

    ```
    
    Cross check if the secret is created successfully using
    
    ```sh
    kubectl get secrets
    ```
    
    You should see a secret named `tls-ssl-minio`.
    
    ## 3. Update deployment yaml file
    
    Whether you are planning to use Kubernetes StatefulSet or Kubernetes Deployment, the steps remain the same.
    
    If you're using certificates provided by a CA, add the below section in your yaml file under `spec.volumes[]`
    
    ```yaml
        volumes:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectAccessorsClassPathTest.kt

            val configurations = mock<RoleBasedConfigurationContainerInternal> {
                on { named(any<String>(), any<Class<Configuration>>()) } doReturn apiConfiguration
            }
            val sourceSet = mock<NamedDomainObjectProvider<SourceSet>>()
            val sourceSets = mock<SourceSetContainer> {
                on { named(any<String>(), eq(SourceSet::class.java)) } doReturn sourceSet
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolveConfigurationResolutionBuildOperationResult.java

                            Attribute<String> stringAtt = Attribute.of(name, String.class);
                            String stringValue;
                            if (attributeValue instanceof Named) {
                                stringValue = ((Named) attributeValue).getName();
                            } else if (attributeValue instanceof Object[]) { // don't bother trying to handle primitive arrays specially
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset.py

            mapping. Each dataset is saved in a separate TFRecord file whose path
            matches the signature def key of `path_map`.
    
        Raises:
          ValueError: When the signature def key in `representative_dataset` is not
          present in the `path_map`.
    
        Returns:
          A map from signature key to the RepresentativeDatasetFile instance
          contains the path to the saved file.
        """
        dataset_file_map = {}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. src/os/exec/lp_windows.go

    		if f := file + e; chkStat(f) == nil {
    			return f, nil
    		}
    	}
    	if hasExt(file) {
    		return "", fs.ErrNotExist
    	}
    	return "", ErrNotFound
    }
    
    // LookPath searches for an executable named file in the
    // directories named by the PATH environment variable.
    // LookPath also uses PATHEXT environment variable to match
    // a suitable candidate.
    // If file contains a slash, it is tried directly and the PATH is not consulted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/testing/match.go

    		}
    		m.subNames[base] = n + 1
    
    		if n == 0 && subname != "" {
    			prefix, nn := parseSubtestNumber(base)
    			if len(prefix) < len(base) && nn < m.subNames[prefix] {
    				// This test is explicitly named like "parent/subname#NN",
    				// and #NN was already used for the NNth occurrence of "parent/subname".
    				// Loop to add a disambiguating suffix.
    				continue
    			}
    			return base
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top