Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 474 for Identical (0.16 sec)

  1. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-distribution/README.adoc

    Running the tests and generate the report:
    
    [listing.terminal.sample-command]
    ----
    $ ./gradlew testAggregateTestReport
    
    BUILD SUCCESSFUL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. src/go/types/instantiate_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if res1 == res2 {
    		t.Errorf("instance from pkg1 (%s) is pointer-equivalent to instance from pkg2 (%s)", res1, res2)
    	}
    	if Identical(res1, res2) {
    		t.Errorf("instance from pkg1 (%s) is identical to instance from pkg2 (%s)", res1, res2)
    	}
    }
    
    func TestMethodInstantiation(t *testing.T) {
    	const prefix = `package p
    
    type T[P any] struct{}
    
    var X T[int]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publisher/ValidatingMavenPublisherTest.groovy

            when:
            publisher.publish(publication, repository)
    
            then:
            def t = thrown InvalidMavenPublicationException
            t.message == "Invalid publication 'pub-name': multiple artifacts with the identical extension and classifier ('ext1', 'classified')."
        }
    
        def "cannot publish extra artifact with same attributes as POM"() {
            given:
            MavenArtifact artifact1 = Stub() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/conversion_test.go

    						{Name: "v2", Served: false, Storage: false, Schema: &CustomResourceValidation{OpenAPIV3Schema: &JSONSchemaProps{Description: "v2", Type: "object"}}},
    					},
    				},
    			},
    		},
    		{
    			Name: "v1 to internal, identical validation moves to top-level",
    			In: &CustomResourceDefinition{
    				Spec: CustomResourceDefinitionSpec{
    					Versions: []CustomResourceDefinitionVersion{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  5. src/go/types/builtins.go

    				// x and y should be invalid now, but be conservative
    				// and check below
    			}
    		}
    		if x.mode == invalid || y.mode == invalid {
    			return
    		}
    
    		// both argument types must be identical
    		if !Identical(x.typ, y.typ) {
    			check.errorf(x, InvalidComplex, invalidOp+"%v (mismatched types %s and %s)", call, x.typ, y.typ)
    			return
    		}
    
    		// the argument types must be of floating-point type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  6. pkg/registry/admissionregistration/validatingadmissionpolicybinding/authz.go

    	oldBinding := old.(*admissionregistration.ValidatingAdmissionPolicyBinding)
    	if oldBinding.Spec.ParamRef != nil && *oldBinding.Spec.ParamRef == *binding.Spec.ParamRef && oldBinding.Spec.PolicyName == binding.Spec.PolicyName {
    		// identical paramRef and policy to old object
    		return nil
    	}
    
    	return v.authorize(ctx, binding)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 12:19:03 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. src/errors/errors.go

    //	}
    //
    // because the former will succeed if err wraps an [*io/fs.PathError].
    package errors
    
    // New returns an error that formats as the given text.
    // Each call to New returns a distinct error value even if the text is identical.
    func New(text string) error {
    	return &errorString{text}
    }
    
    // errorString is a trivial implementation of error.
    type errorString struct {
    	s string
    }
    
    func (e *errorString) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 19:45:41 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Tag.java

            UNKNOWN("UNKNOWN", "badge badge-dark", "The status is unknown, may be it's cancelled?"),
            FLAKY("FLAKY", "badge badge-danger", "The scenario's difference confidence > 95% even when running identical code."),
            UNTAGGED("UNTAGGED", null, null);
    
            private String name;
            private String classAttr;
            private String title;
    
            FixedTag(String name, String classAttr, String title) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. tensorflow/c/tf_status.h

    #ifdef __cplusplus
    extern "C" {
    #endif
    
    typedef struct TSL_Status TF_Status;
    
    // --------------------------------------------------------------------------
    // TF_Code holds an error code.  The enum values here are identical to
    // corresponding values in error_codes.proto.
    typedef TSL_Code TF_Code;
    // LINT.IfChange
    #define TF_OK TSL_OK
    #define TF_CANCELLED TSL_CANCELLED
    #define TF_UNKNOWN TSL_UNKNOWN
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. cni/pkg/iptables/iptables_linux.go

    		// ip rule add fwmark 0x111/0xfff pref 32764 lookup 100
    		//
    		// Adds in-pod rules for marking packets with the istio-specific TPROXY mark.
    		// A very similar mechanism is used for sidecar TPROXY.
    		//
    		// TODO largely identical/copied from tools/istio-iptables/pkg/capture/run_linux.go
    		inpodMarkRule := netlink.NewRule()
    		inpodMarkRule.Family = family
    		inpodMarkRule.Table = RouteTableInbound
    		inpodMarkRule.Mark = InpodTProxyMark
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top