Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 324 for sameId (0.34 sec)

  1. src/cmd/compile/internal/types2/api_test.go

    		// Methods and method fields
    		{"concreteMethod", lookup("t").(*Named).Method(0)},
    		{"recv", lookup("t").(*Named).Method(0).Type().(*Signature).Recv()},
    		{"mParam", lookup("t").(*Named).Method(0).Type().(*Signature).Params().At(0)},
    		{"mResult", lookup("t").(*Named).Method(0).Type().(*Signature).Results().At(0)},
    
    		// Interface methods
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    	// will fulfill this Template, but have a unique identity from the rest
    	// of the StatefulSet. Each pod will be named with the format
    	// <statefulsetname>-<podindex>. For example, a pod in a StatefulSet named
    	// "web" with index number "3" would be named "web-3".
    	// The only allowed template.spec.restartPolicy value is "Always".
    	Template v1.PodTemplateSpec `json:"template" protobuf:"bytes,3,opt,name=template"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. src/net/http/request.go

    }
    
    // CookiesNamed parses and returns the named HTTP cookies sent with the request
    // or an empty slice if none matched.
    func (r *Request) CookiesNamed(name string) []*Cookie {
    	if name == "" {
    		return []*Cookie{}
    	}
    	return readCookies(r.Header, name)
    }
    
    // ErrNoCookie is returned by Request's Cookie method when a cookie is not found.
    var ErrNoCookie = errors.New("http: named cookie not present")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.validation;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.io.File;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.Deque;
    import java.util.HashMap;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      // CHECK: "tf.StatefulPartitionedCall"(%[[VAR]], %[[GVAR1]], %[[GVAR2]])
      // CHECK-SAME: f = @callee_tensorarray_decomposed
      %call = "tf.StatefulPartitionedCall"(%ta#0) {f = @callee, config = "", config_proto = "", executor_type = ""}
        : (tensor<!tf_type.resource>) -> tensor<!tf_type.resource>
      // CHECK: "tf.PartitionedCall"(%[[VAR]], %[[GVAR1]], %[[GVAR2]])
      // CHECK-SAME: f = @callee_tensorarray_decomposed
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ppc64/asm.go

    // runtime.elf_restvr+(m-20)*8, and similar.
    //
    // These functions are defined in the ELFv2 ABI (generated when using gcc -Os option) to save and
    // restore callee-saved registers (as defined in the PPC64 ELF ABIs) from registers n or m to 31 of
    // the named type. R12 and R0 are sometimes used in exceptional ways described in the ABI.
    //
    // Final note, this is only needed when linking internally. The external linker will generate these
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    include::sample[dir="snippets/configurationCache/disallowedTypesFixed/groovy",files="build.gradle[tags=task-type]"]
    ====
    <1> no more problems reported, we now reference the supported type `FileCollection`
    
    In the same vein, if you encounter the same problem with an ad-hoc task declared in a script as follows:
    
    ====
    include::sample[dir="snippets/configurationCache/disallowedTypes/kotlin",files="build.gradle.kts[tags=ad-hoc-task]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    					"inListField": integerType,
    				})),
    			}),
    			expectCost: map[string]int64{
    				// we do not expose a stable type for the self variable, even when it is an object that CEL
    				// considers a named type. The only operation developers should be able to perform on the type is
    				// equality checking.
    				"type(self) == type(self)":                                     5,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    	if add2Err != nil {
    		t.Fatalf("AddVolumeNode failed. Expected: <no error> Actual: <%v>", add2Err)
    	}
    
    	if generatedVolumeName != generatedVolumeName2 {
    		t.Fatalf(
    			"Generated volume names for the same volume should be the same but they are not: %q and %q",
    			generatedVolumeName,
    			generatedVolumeName2)
    	}
    
    	volumeNodeComboState = asw.GetAttachState(generatedVolumeName, nodeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    }  // namespace internal
    
    // The friend relationship of some of these classes is cyclic.
    // If we don't forward declare them the compiler might confuse the classes
    // in friendship clauses with same named classes on the scope.
    class Test;
    class TestCase;
    class TestInfo;
    class UnitTest;
    
    // A class for indicating whether an assertion was successful.  When
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top