Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 112 for releasem (0.26 sec)

  1. src/runtime/pprof/pprof_test.go

    	}
    }
    
    func blockMutex(t *testing.T) {
    	var mu sync.Mutex
    	mu.Lock()
    	go func() {
    		awaitBlockedGoroutine(t, "sync.Mutex.Lock", "blockMutex", 1)
    		mu.Unlock()
    	}()
    	// Note: Unlock releases mu before recording the mutex event,
    	// so it's theoretically possible for this to proceed and
    	// capture the profile before the event is recorded. As long
    	// as this is blocked before the unlock happens, it's okay.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    	//
    	// A careful programmer will check the return value of close(), since it is quite possible that
    	// errors on a previous write(2) operation are reported only on the final close() that releases
    	// the open file descriptor.
    	//
    	// Failing to check the return value when closing a file may lead to silent loss of data.
    	// This can especially be observed with NFS and with disk quota.
    	return w.Close()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  3. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    // associated with the current thread. It is a pseudo token that does
    // not need to be closed.
    func GetCurrentThreadEffectiveToken() Token {
    	return Token(^uintptr(6 - 1))
    }
    
    // Close releases access to access token.
    func (t Token) Close() error {
    	return CloseHandle(Handle(t))
    }
    
    // getInfo retrieves a specified type of information about an access token.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    	sh := b.Shell(a)
    
    	// Wait for previous test to get started and print its first json line.
    	select {
    	case <-r.prev:
    		// If should fail fast then release next test and exit.
    		if testShouldFailFast.Load() {
    			close(r.next)
    			return nil
    		}
    	case <-base.Interrupted:
    		// We can't wait for the previous test action to complete: we don't start
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    }
    
    // Check z/OS version
    func zosLeVersion() (version, release uint32) {
    	p1 := (*(*uintptr)(unsafe.Pointer(uintptr(1208)))) >> 32
    	p1 = *(*uintptr)(unsafe.Pointer(uintptr(p1 + 88)))
    	p1 = *(*uintptr)(unsafe.Pointer(uintptr(p1 + 8)))
    	p1 = *(*uintptr)(unsafe.Pointer(uintptr(p1 + 984)))
    	vrm := *(*uint32)(unsafe.Pointer(p1 + 80))
    	version = (vrm & 0x00ff0000) >> 16
    	release = (vrm & 0x0000ff00) >> 8
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    	case ASCW, ASCD:
    		// Set release access ordering
    		ins.funct7 = 1
    		ins.rd, ins.rs1, ins.rs2 = uint32(p.RegTo2), uint32(p.To.Reg), uint32(p.From.Reg)
    
    	case AAMOSWAPW, AAMOSWAPD, AAMOADDW, AAMOADDD, AAMOANDW, AAMOANDD, AAMOORW, AAMOORD,
    		AAMOXORW, AAMOXORD, AAMOMINW, AAMOMIND, AAMOMINUW, AAMOMINUD, AAMOMAXW, AAMOMAXD, AAMOMAXUW, AAMOMAXUD:
    		// Set aqrl to use acquire & release access ordering
    		ins.funct7 = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/sidecar_template.golden.yaml

            }
          }
        }
    kind: ConfigMap
    metadata:
      labels:
        install.operator.istio.io/owning-resource: unknown
        istio.io/rev: default
        operator.istio.io/component: Pilot
        release: istio
      name: istio-sidecar-injector
      namespace: istio-system
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 86.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// mainly because c.watchCache.processEvent method won't be able to make progress
    	//
    	// moreover even though the c.waitUntilWatchCacheFreshAndForceAllEvents acquires a lock
    	// it is safe to release the lock after the method finishes because we don't require
    	// any atomicity between the call to the method and further calls that actually get the events.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_test.go

    		{"go1.20", "go1.19", "go1.20"}, // file downgrade not permitted
    		{"go1.21", "go1.19", "go1.19"}, // file downgrade permitted (module version is >= go1.21)
    
    		// versions containing release numbers
    		// (file versions containing release numbers are considered invalid)
    		{"go1.19.0", "", "go1.19.0"},         // no file version specified
    		{"go1.20", "go1.20.1", "go1.20"},     // file upgrade ignored
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types.go

    // the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However,
    // it may be subject to name and representation changes in future releases, and clients should not
    // depend on its stability. It is primarily for internal use by controllers.
    type ControllerRevision struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
Back to top