Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for picard (0.22 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    			ExpectedThreeWay:       `{"complex_nullable":{"key":null}}`,
    			ExpectedThreeWayResult: `{"array":[1,2,3],"complex":{"nested":true},"complex_nullable":{},"name":"foo","scalar":true}`,
    		},
    		"discard nulls in nested and adds not nulls": {
    			Original: `{"array":[1,2,3],"complex":{"nested":true},"name":"foo","scalar":true}`,
    			Current:  `{"array":[1,2,3],"complex":{"nested":true},"name":"foo","scalar":true}`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

      if ! tune2fs -l "${device}" ; then
        echo "Formatting '${device}'"
        mkfs.ext4 -F "${device}"
      fi
    
      mkdir -p "${mountpoint}"
      echo "Mounting '${device}' at '${mountpoint}'"
      mount -o discard,defaults "${device}" "${mountpoint}"
      chmod a+w "${mountpoint}"
    }
    
    # Gets a devices UUID and bind mounts the device to mount location in
    # /mnt/disks/by-id/
    function unique-uuid-bind-mount(){
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    computed modulo 2<sup><i>n</i></sup>, where <i>n</i> is the bit width of
    the <a href="#Numeric_types">unsigned integer</a>'s type.
    Loosely speaking, these unsigned integer operations
    discard high bits upon overflow, and programs may rely on "wrap around".
    </p>
    <p>
    For signed integers, the operations <code>+</code>,
    <code>-</code>, <code>*</code>, <code>/</code>, and <code>&lt;&lt;</code> may legally
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. pkg/controller/garbagecollector/garbagecollector_test.go

    	//
    	// The 1s sleep in the test allows GetDeletableResources and
    	// gc.resyncMonitors to run ~5 times to ensure the changes to the
    	// fakeDiscoveryClient are picked up.
    	go gc.Sync(tCtx, fakeDiscoveryClient, 200*time.Millisecond)
    
    	// Wait until the sync discovers the initial resources
    	time.Sleep(1 * time.Second)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. src/crypto/x509/x509_test.go

    	}
    }
    
    func TestGob(t *testing.T) {
    	// Test that gob does not reject Certificate.
    	// See go.dev/issue/65633.
    	cert := new(Certificate)
    	err := gob.NewEncoder(io.Discard).Encode(cert)
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    func TestRejectCriticalAKI(t *testing.T) {
    	template := Certificate{
    		SerialNumber: big.NewInt(1),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. src/database/sql/sql_test.go

    // during execution of the query.
    func TestTxContextWait(t *testing.T) {
    	testContextWait(t, false)
    }
    
    // TestTxContextWaitNoDiscard is the same as TestTxContextWait, but should not discard
    // the final connection.
    func TestTxContextWaitNoDiscard(t *testing.T) {
    	testContextWait(t, true)
    }
    
    func testContextWait(t *testing.T, keepConnOnRollback bool) {
    	db := newTestDB(t, "people")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	"lipaw":    0x63,
    	"ltg1929":  0x34,
    	"ltg2007":  0x35,
    	"luna1918": 0x36,
    	"metelko":  0x37,
    	"monoton":  0x38,
    	"ndyuka":   0x39,
    	"nedis":    0x3a,
    	"newfound": 0x3b,
    	"nicard":   0x3c,
    	"njiva":    0x64,
    	"nulik":    0x3d,
    	"osojs":    0x65,
    	"oxendict": 0x3e,
    	"pahawh2":  0x3f,
    	"pahawh3":  0x40,
    	"pahawh4":  0x41,
    	"pamaka":   0x42,
    	"peano":    0x43,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    	// defer inline frame expansion until the profile is reported.
    	// The "maxSkip" term is for frame pointer unwinding, where we
    	// want to end up with debug.profstackdebth frames but will discard
    	// some "physical" frames to account for skipping.
    	return make([]uintptr, 1+maxSkip+debug.profstackdepth)
    }
    
    // makeProfStack returns a buffer large enough to hold a maximum-sized stack
    // trace.
    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