Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 344 for differs (0.5 sec)

  1. licenses/github.com/gogo/protobuf/LICENSE

    Copyright (c) 2013, The GoGo Authors. All rights reserved.
    
    Protocol Buffers for Go with Gadgets
    
    Go support for Protocol Buffers - Google's data interchange format
    
    Copyright 2010 The Go Authors.  All rights reserved.
    https://github.com/golang/protobuf
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are
    met:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32_s390x.go

    func archAvailableCastagnoli() bool {
    	return hasVX
    }
    
    var archCastagnoliTable8 *slicing8Table
    
    func archInitCastagnoli() {
    	if !hasVX {
    		panic("not available")
    	}
    	// We still use slicing-by-8 for small buffers.
    	archCastagnoliTable8 = slicingMakeTable(Castagnoli)
    }
    
    // archUpdateCastagnoli calculates the checksum of p using
    // vectorizedCastagnoli.
    func archUpdateCastagnoli(crc uint32, p []byte) uint32 {
    	if !hasVX {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. src/cmd/internal/test2json/testdata/issue23036.test

    === RUN   TestActualCase
    --- FAIL: TestActualCase (0.00s)
            foo_test.go:14: Differed.
                    Expected: MyTest:
                    --- FAIL: Test output from other tool
                    Actual: not expected
    FAIL
    exit status 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 20:12:12 UTC 2018
    - 286 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/mutation/common/val_test.go

    				"zero": int64(0),
    			},
    		},
    		{
    			name: "none",
    			fields: map[string]ref.Val{
    				"absent": types.OptionalNone,
    			},
    			expected: map[string]any{
    				// right now no way to differ from a plain null.
    				// we will need to filter out optional.none() before this conversion.
    				"absent": nil,
    			},
    		},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    			v := &ObjectVal{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 00:01:35 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. pkg/registry/storage/volumeattachment/storage/storage_test.go

    	if !apiequality.Semantic.DeepEqual(attachmentIn.Spec, attachmentOut.Spec) {
    		t.Errorf("objects differ: %v", cmp.Diff(attachmentOut.Spec, attachmentIn.Spec))
    	}
    	if !apiequality.Semantic.DeepEqual(attachmentIn.Status, attachmentOut.Status) {
    		t.Errorf("objects differ: %v", cmp.Diff(attachmentOut.Status, attachmentIn.Status))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. src/internal/diff/diff_test.go

    				t.Fatalf("%s: want three files, third named \"diff\"", file)
    			}
    			diffs := Diff(a.Files[0].Name, clean(a.Files[0].Data), a.Files[1].Name, clean(a.Files[1].Data))
    			want := clean(a.Files[2].Data)
    			if !bytes.Equal(diffs, want) {
    				t.Fatalf("%s: have:\n%s\nwant:\n%s\n%s", file,
    					diffs, want, Diff("have", diffs, "want", want))
    			}
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 16:56:29 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/stmt.go

    			// Don't allow open-coded defers if there are more than
    			// 8 defers in the function, since we use a single
    			// byte to record active defers.
    			// Also don't allow if we need to use deferprocat.
    			ir.CurFunc.SetOpenCodedDeferDisallowed(true)
    		}
    		if n.Esc() != ir.EscNever {
    			// If n.Esc is not EscNever, then this defer occurs in a loop,
    			// so open-coded defers cannot be used in this function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. src/runtime/tracebuf.go

    	}
    	return w, refill
    }
    
    // flush puts w.traceBuf on the queue of full buffers.
    func (w traceWriter) flush() traceWriter {
    	systemstack(func() {
    		lock(&trace.lock)
    		if w.traceBuf != nil {
    			traceBufFlush(w.traceBuf, w.gen)
    		}
    		unlock(&trace.lock)
    	})
    	w.traceBuf = nil
    	return w
    }
    
    // refill puts w.traceBuf on the queue of full buffers and refresh's w's buffer.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/test_utils.h

    void FillNumericTensorBuffer(DataType dtype, size_t num_elements, void* buffer,
                                 int8_t value);
    
    // Checks the underlying data is equal for the buffers for two numeric tensors.
    // Note: The caller must ensure to check that the dtypes and sizes of the
    // underlying buffers are the same before calling this.
    // dtype must be any integer dtype, float, or double.
    void CheckBufferDataIsEqual(DataType dtype, int64_t num_elements, void* a,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  10. src/go/token/example_test.go

    		// Either a FuncDecl or GenDecl, since we exit on error.
    		kind := "func"
    		if gen, ok := decl.(*ast.GenDecl); ok {
    			kind = gen.Tok.String()
    		}
    
    		// If the relative and absolute positions differ, show both.
    		fmtPosition := relPosition.String()
    		if relPosition != absPosition {
    			fmtPosition += "[" + absPosition.String() + "]"
    		}
    
    		fmt.Printf("%s: %s\n", fmtPosition, kind)
    	}
    
    	// Output:
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:09:31 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top