Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,114 for EQUAL (0.04 sec)

  1. tests/scanner_valuer_test.go

    	}
    
    	if result.ExampleStructPtr.Val != "value2" {
    		t.Errorf(`ExampleStructPtr.Val should equal to "value2", but got %v`, result.ExampleStructPtr.Val)
    	}
    
    	if result.ExampleStruct.Val != "value1" {
    		t.Errorf(`ExampleStruct.Val should equal to "value1", but got %#v`, result.ExampleStruct)
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 07 07:02:07 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/tests/canonicalize.mlir

    // CHECK-NEXT: return %[[e]] : tensor<2xindex>
    }
    
    // CHECK-LABEL: equal
    func.func @equal() -> (i1, i1, i1, i1) {
      %0 = tfr.constant f32 -> !tfr.attr
      %1 = tfr.constant f32 -> !tfr.attr
      %2 = tfr.constant i32 -> !tfr.attr
      %same_type = tfr.equal %0,%1 -> i1
      %diff_type = tfr.equal %0,%2 -> i1
    
      %3 = tfr.constant "hello" -> !tfr.attr
      %4 = tfr.constant "hello" -> !tfr.attr
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/FilesTest.java

        File i18nFile = getTestFile("i18n.txt");
        assertFalse(Files.equal(asciiFile, i18nFile));
        assertTrue(Files.equal(asciiFile, asciiFile));
    
        File temp = createTempFile();
        Files.copy(asciiFile, temp);
        assertTrue(Files.equal(asciiFile, temp));
    
        Files.copy(i18nFile, temp);
        assertTrue(Files.equal(i18nFile, temp));
    
        Files.copy(asciiFile, temp);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  4. pkg/registry/storage/csidriver/strategy_test.go

    			require.Equal(t, test.wantGeneration, csiDriver.GetGeneration())
    			require.Equal(t, test.wantCapacity, csiDriver.Spec.StorageCapacity)
    			require.Equal(t, test.wantModes, csiDriver.Spec.VolumeLifecycleModes)
    			require.Equal(t, test.wantTokenRequests, csiDriver.Spec.TokenRequests)
    			require.Equal(t, test.wantRequiresRepublish, csiDriver.Spec.RequiresRepublish)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dependencies/AbstractModuleDependency.java

            }
            if (!Objects.equal(getArtifacts(), dependencyRhs.getArtifacts())) {
                return false;
            }
            if (!Objects.equal(getExcludeRules(), dependencyRhs.getExcludeRules())) {
                return false;
            }
            if (!Objects.equal(getAttributes(), dependencyRhs.getAttributes())) {
                return false;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. src/runtime/string_test.go

    		if string(b) != s {
    			t.Fatalf("strings are not equal: '%v' and '%v'", string(b), s)
    		}
    		if string(b) < s {
    			t.Fatalf("strings are not equal: '%v' and '%v'", string(b), s)
    		}
    		if string(b) > s {
    			t.Fatalf("strings are not equal: '%v' and '%v'", string(b), s)
    		}
    		if string(b) == s {
    		} else {
    			t.Fatalf("strings are not equal: '%v' and '%v'", string(b), s)
    		}
    		if string(b) <= s {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 13 14:05:23 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    				},
    			},
    			// should be exactly equal to maxDurationSizeJSON
    			ExpectedMaxElements: apiservercel.MaxDurationSizeJSON,
    		},
    		{
    			Name: "dateSize",
    			InputSchema: &schema.Structural{
    				Generic: schema.Generic{
    					Type: "string",
    				},
    				ValueValidation: &schema.ValueValidation{
    					Format: "date",
    				},
    			},
    			// should be exactly equal to dateSizeJSON
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/openapi/schemas_test.go

    					Format: "duration",
    				}},
    			// should be exactly equal to maxDurationSizeJSON
    			ExpectedMaxElements: apiservercel.MaxDurationSizeJSON,
    		},
    		{
    			Name: "dateSize",
    			InputSchema: &spec.Schema{
    				SchemaProps: spec.SchemaProps{
    					Type:   []string{"string"},
    					Format: "date",
    				}},
    			// should be exactly equal to dateSizeJSON
    			ExpectedMaxElements: apiservercel.JSONDateSize,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 17:18:27 UTC 2022
    - 13K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

                return false;
            }
            Project project = (Project) o;
            return Objects.equal(jdk, project.jdk)
                && Objects.equal(modulePaths, project.modulePaths)
                && Objects.equal(projectLibraries, project.projectLibraries)
                && Objects.equal(wildcards, project.wildcards)
                && Objects.equal(vcs, project.vcs);
        }
    
        @Override
        public int hashCode() {
            int result;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/test/groovy/org/gradle/model/internal/core/ModelTypeTest.groovy

            type.displayName == "Map<String, Map<Integer, Float>>"
        }
    
        def "parameterized type is equal when its raw type and all type parameters are equal"() {
            expect:
            def type = new ModelType<List<Integer>>() {}
            def same = new ModelType<List<Integer>>() {}
            def raw = ModelType.of(List)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 11 21:42:04 UTC 2018
    - 22.3K bytes
    - Viewed (0)
Back to top