Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 655 for IsSame (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/client_ca_test.go

    			name:     "lhs nil",
    			rhs:      &dynamicCertificateContent{},
    			expected: false,
    		},
    		{
    			name:     "rhs nil",
    			lhs:      &dynamicCertificateContent{},
    			expected: false,
    		},
    		{
    			name: "same",
    			lhs: &dynamicCertificateContent{
    				clientCA: caBundleContent{caBundle: []byte("foo")},
    			},
    			rhs: &dynamicCertificateContent{
    				clientCA: caBundleContent{caBundle: []byte("foo")},
    			},
    			expected: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 17 13:37:16 UTC 2019
    - 3.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecWithLongCommandLineIntegrationTest.groovy

            'ExecOperations.javaexec' | 'runWithExecOperations'
            // The test does not work with the JavaExec task because the task resolves the executable prior to starting the process.
            // At the same time, all the cases test the same functionality of the ExecHandle implementation.
            // 'JavaExec task'           | 'run'
        }
    
        @UnsupportedWithConfigurationCache(iterationMatchers = ".* project.javaexec")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/testdata/issue18676/main.go

    // The bug happened like this:
    //  1. The main binary adds an itab for *json.UnsupportedValueError / error
    //     (concrete type / interface type).  This itab goes in hash bucket 0x111.
    //  2. The plugin adds that same itab again.  That makes a cycle in the itab
    //     chain rooted at hash bucket 0x111.
    //  3. The main binary then asks for the itab for *dynamodbstreamsevt.Event /
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_test_files.txt

    env GO111MODULE=on
    
    cd foo
    
    # Testing an explicit source file should use the same import visibility as the
    # package in the same directory.
    go list -test -deps
    go list -test -deps foo_test.go
    
    # If the file is inside the main module's vendor directory, it should have
    # visibility based on the vendor-relative import path.
    mkdir vendor/example.com/foo
    cp foo_test.go vendor/example.com/foo
    go list -test -deps vendor/example.com/foo/foo_test.go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 09 18:12:31 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/simple.mlir

    // and the module including the TFLite version.
    
    func.func @main(tensor<3x2xi32>) -> tensor<3x2xi32> {
    ^bb0(%arg0: tensor<3x2xi32>):
      // CHECK: module attributes
      // CHECK-SAME: tfl.description = "MLIR Converted."
      // CHECK-SAME: tfl.schema_version = 3 : i32
    
      // CHECK:          %{{.*}} = "tfl.pseudo_const"() <{value = dense<{{\[\[1, 2\], \[3, 4\], \[5, 6\]\]}}> : tensor<3x2xi32>}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. src/go/types/methodset.go

    var emptyMethodSet MethodSet
    
    // Note: NewMethodSet is intended for external use only as it
    //       requires interfaces to be complete. It may be used
    //       internally if LookupFieldOrMethod completed the same
    //       interfaces beforehand.
    
    // NewMethodSet returns the method set for the given type T.
    // It always returns a non-nil method set, even if it is empty.
    func NewMethodSet(T Type) *MethodSet {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/echotest/filters.go

    	}
    	return to
    }
    
    // SimplePodServiceAndAllSpecial finds the first Pod deployment that has a sidecar and doesn't use a headless service and removes all
    // other "regular" pods that aren't part of the same Service. Pods that are part of the same Service but are in a
    // different cluster or revision will still be included.
    // Example:
    //   - The full set of apps is a, b, c, d, e, headless, naked, and vm.
    //   - The plain-pods are a, b and c.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue60377.go

    // license that can be found in the LICENSE file.
    
    package p
    
    // The type parameter P is not used in interface T1.
    // T1 is a defined parameterized interface type which
    // can be assigned to any other interface with the same
    // methods. We cannot infer a type argument in this case
    // because any type would do.
    
    type T1[P any] interface{ m() }
    
    func g[P any](T1[P]) {}
    
    func _() {
    	var x T1[int]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 20:19:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/caching/BuildCacheServiceFactory.java

             * Particular configuration should be set via {@link #config(String, String)}.
             * <p>
             * {@link BuildCacheServiceFactory} implementations should always return the same value for the same cache “type”.
             * All implementations should call this method.
             * <p>
             * Values should be lowercase, except where using an acronym (e.g. HTTP).
             * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 08 17:15:17 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/swift-application-task-graph.dot

      clean
    
      // Ensure ordering
      compileDebugSwift -> compileReleaseSwift -> clean [style=invis]
      {rank=same compileDebugSwift compileReleaseSwift clean}
    
      check -> assemble -> assembleDebug -> assembleRelease [style=invis]
      {rank=same check assemble assembleDebug assembleRelease}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top