Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 180 for _Equal (0.36 sec)

  1. src/cmd/cgo/gcc.go

    			continue
    		}
    		if d, ok := dt.(*dwarf.TypedefType); ok {
    			dt = d.Type
    			continue
    		}
    		break
    	}
    	return dt
    }
    
    // unqual strips away qualifiers from a DWARF type.
    // In general we don't care about top-level qualifiers.
    func unqual(dt dwarf.Type) dwarf.Type {
    	for {
    		if d, ok := dt.(*dwarf.QualType); ok {
    			dt = d.Type
    		} else {
    			break
    		}
    	}
    	return dt
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // Macros for comparing floating-point numbers.
    //
    //    * {ASSERT|EXPECT}_FLOAT_EQ(expected, actual):
    //         Tests that two float values are almost equal.
    //    * {ASSERT|EXPECT}_DOUBLE_EQ(expected, actual):
    //         Tests that two double values are almost equal.
    //    * {ASSERT|EXPECT}_NEAR(v1, v2, abs_error):
    //         Tests that v1 and v2 are within the given distance to each other.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // Macros for comparing floating-point numbers.
    //
    //    * {ASSERT|EXPECT}_FLOAT_EQ(expected, actual):
    //         Tests that two float values are almost equal.
    //    * {ASSERT|EXPECT}_DOUBLE_EQ(expected, actual):
    //         Tests that two double values are almost equal.
    //    * {ASSERT|EXPECT}_NEAR(v1, v2, abs_error):
    //         Tests that v1 and v2 are within the given distance to each other.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/tests/raise-target-subgraphs.mlir

    // CHECK:     %15 = "tfl.equal"(%14, %arg12) {tac.device = "DARWINN", tac.inference_type = "FLOAT"} : (tensor<?xi32>, tensor<i32>) -> tensor<?xi1>
    // CHECK:     %16 = "tfl.equal"(%14, %arg3) {tac.device = "DARWINN", tac.inference_type = "FLOAT"} : (tensor<?xi32>, tensor<i32>) -> tensor<?xi1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  5. src/go/build/build.go

    		ctxt.JoinPath != nil || ctxt.SplitPathList != nil || ctxt.IsAbsPath != nil || ctxt.IsDir != nil || ctxt.HasSubdir != nil || ctxt.ReadDir != nil || ctxt.OpenFile != nil || !equal(ctxt.ToolTags, defaultToolTags) || !equal(ctxt.ReleaseTags, defaultReleaseTags) {
    		return errNoModules
    	}
    
    	// If ctxt.GOROOT is not set, we don't know which go command to invoke,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. src/net/netip/netip_test.go

    		}
    		if cmp < -1 || cmp > 1 {
    			t.Errorf("bogus Compare return value %v", cmp)
    		}
    		if cmp == 0 && tt.a != tt.b {
    			t.Errorf("Compare(%q, %q) = 0; but not equal", tt.a, tt.b)
    		}
    		if cmp == 1 && !tt.b.Less(tt.a) {
    			t.Errorf("Compare(%q, %q) = 1; but b.Less(a) isn't true", tt.a, tt.b)
    		}
    
    		// Also check inverse.
    		if got == tt.want && got {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    					job.Status.StartTime = &now
    				}
    			}
    		}
    	}
    
    	needsStatusUpdate := suspendCondChanged || active != job.Status.Active || !ptr.Equal(ready, job.Status.Ready)
    	needsStatusUpdate = needsStatusUpdate || !ptr.Equal(job.Status.Terminating, jobCtx.terminating)
    	job.Status.Active = active
    	job.Status.Ready = ready
    	job.Status.Terminating = jobCtx.terminating
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    		defer unlock()
    	}
    
    	err = lockedfile.Transform(modFilePath, func(old []byte) ([]byte, error) {
    		if bytes.Equal(old, updatedGoMod) {
    			// The go.mod file is already equal to new, possibly as the result of some
    			// other process.
    			return nil, errNoChange
    		}
    
    		if index != nil && !bytes.Equal(old, index.data) {
    			// The contents of the go.mod file have changed. In theory we could add all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/httproute_test.go

    				"alias",
    			},
    		},
    	}
    
    	testFn := func(t test.Failer, service *model.Service, port int, node *model.Proxy, want []string) {
    		out, _ := generateVirtualHostDomains(service, port, port, node)
    		assert.Equal(t, out, want)
    	}
    
    	for _, c := range cases {
    		c := c
    		t.Run(c.name, func(t *testing.T) {
    			test.SetForTest[bool](t, &features.EnableDualStack, c.enableDualStack)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/prove.go

    	jumpTable0
    )
    
    // relation represents the set of possible relations between
    // pairs of variables (v, w). Without a priori knowledge the
    // mask is lt | eq | gt meaning v can be less than, equal to or
    // greater than w. When the execution path branches on the condition
    // `v op w` the set of relations is updated to exclude any
    // relation not possible due to `v op w` being true (or false).
    //
    // E.g.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top