Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for Comparer (0.17 sec)

  1. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "type": "string"
              },
              "priority": {
                "description": "priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.",
                "format": "int32",
                "type": "integer"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    			if table.n > 0 {
    				if DeepEqual(vnot.Interface(), v.Interface()) {
    					t.Errorf(
    						"arrays (%#v) compare ok (but should not)",
    						v.Interface(),
    					)
    				}
    			}
    			if !DeepEqual(vok.Interface(), v.Interface()) {
    				t.Errorf(
    					"arrays (%#v) compare NOT-ok (but should)",
    					v.Interface(),
    				)
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (EqB  x y) => (XOR (MOVDconst [1]) (XOR <typ.Bool> x y))
    (NeqB ...) => (XOR ...)
    (Not    x) => (XOR (MOVDconst [1]) x)
    
    // shifts
    // hardware instruction uses only the low 6 bits of the shift
    // we compare to 64 to ensure Go semantics for large shifts
    // Rules about rotates with non-const shift are based on the following rules,
    // if the following rules change, please also modify the rules based on them.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    		}
    		// Adding -pgo breaks the sort order in BuildInfo.Settings. Restore it.
    		slices.SortFunc(p.Internal.BuildInfo.Settings, func(x, y debug.BuildSetting) int {
    			return strings.Compare(x.Key, y.Key)
    		})
    	}
    
    	switch cfg.BuildPGO {
    	case "off":
    		return
    
    	case "auto":
    		// Locate PGO profiles from the main packages, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    commbank
    
    // community : 2013-12-05 Binky Moon, LLC
    community
    
    // company : 2013-11-07 Binky Moon, LLC
    company
    
    // compare : 2015-10-08 Registry Services, LLC
    compare
    
    // computer : 2013-10-24 Binky Moon, LLC
    computer
    
    // comsec : 2015-01-08 VeriSign, Inc.
    comsec
    
    // condos : 2013-12-05 Binky Moon, LLC
    condos
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    using ::tsl::StatusOr;
    
    namespace {
    
    bool IsOutputShapesAttribute(const AttrValue& attr_value,
                                 llvm::StringRef attr_name) {
      return attr_name.compare(kOutputShapesAttrName) == 0 &&
             attr_value.value_case() == AttrValue::kList;
    }
    
    bool IsResourceOutputShapesAttribute(const AttrValue& attr_value,
                                         llvm::StringRef attr_name) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        //     %0 = stablehlo.constant dense<0> : tensor<i32>
        //     %1 = stablehlo.get_dimension_size %arg1, dim = 0 : (tensor<?x1024xf32>) -> tensor<i32>
        //     %2 = stablehlo.compare  EQ, %0, %1 : (tensor<i32>, tensor<i32>) -> tensor<i1>
        //     stablehlo.custom_call @shape_assertion(%2) {error_message = "Shape assertion failed", has_side_effect = true} : (tensor<i1>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    		if test.got != test.exp {
    			t.Errorf("On %v, expected '%v', but got '%v'",
    				test.name, test.exp, test.got)
    		}
    	}
    }
    
    func TestTranslateTimestampUntil(t *testing.T) {
    	// Since this method compares the time with time.Now() internally,
    	// small buffers of 0.1 seconds are added on comparing times to consider method call overhead.
    	// Otherwise, the output strings become shorter than expected.
    	const buf = 1e8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    // do any scheduling that requires an m.
    //
    // In order to avoid needing heavy lifting here, we adopt
    // the following strategy: there is a stack of available m's
    // that can be stolen. Using compare-and-swap
    // to pop from the stack has ABA races, so we simulate
    // a lock by doing an exchange (via Casuintptr) to steal the stack
    // head and replace the top pointer with MLOCKED (1).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top