Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for Acquirem (0.21 sec)

  1. src/runtime/mgcmark.go

    				// Set this *after* we trace the end to make sure
    				// that we emit an in-progress event if this is
    				// the first event for the goroutine in the trace
    				// or trace generation. Also, do this between
    				// acquire/release because this is part of the
    				// goroutine's trace state, and it must be atomic
    				// with respect to the tracer.
    				gp.inMarkAssist = false
    				traceRelease(trace)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    	}
    	done := make(chan struct{})
    	if s.LockFilePath != "" {
    		klog.InfoS("Acquiring file lock", "path", s.LockFilePath)
    		if err := flock.Acquire(s.LockFilePath); err != nil {
    			return fmt.Errorf("unable to acquire file lock on %q: %w", s.LockFilePath, err)
    		}
    		if s.ExitOnLockContention {
    			klog.InfoS("Watching for inotify events", "path", s.LockFilePath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    // how much it scavenged in bytes.
    //
    // searchIdx is the page index to start searching from in ci.
    //
    // Returns the number of bytes scavenged.
    //
    // Must run on the systemstack because it acquires p.mheapLock.
    //
    //go:systemstack
    func (p *pageAlloc) scavengeOne(ci chunkIdx, searchIdx uint, max uintptr) uintptr {
    	// Calculate the maximum number of pages to scavenge.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    };
    
    // MutexBase and Mutex implement mutex on pthreads-based platforms. They
    // are used in conjunction with class MutexLock:
    //
    //   Mutex mutex;
    //   ...
    //   MutexLock lock(&mutex);  // Acquires the mutex and releases it at the end
    //                            // of the current scope.
    //
    // MutexBase implements behavior for both statically and dynamically
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"force":        "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  6. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // request. Valid values are:
      // - All: all dry run stages will be processed
      // +optional
      repeated string dryRun = 1;
    
      // Force is going to "force" Apply requests. It means user will
      // re-acquire conflicting fields owned by other people.
      optional bool force = 2;
    
      // fieldManager is a name associated with the actor or entity
      // that is making these changes. The value must be less than or
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // - All: all dry run stages will be processed
      // +optional
      // +listType=atomic
      repeated string dryRun = 1;
    
      // Force is going to "force" Apply requests. It means user will
      // re-acquire conflicting fields owned by other people.
      optional bool force = 2;
    
      // fieldManager is a name associated with the actor or entity
      // that is making these changes. The value must be less than or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFile.java

                    // one extra share to keep the tree alive
                    return this.treeHandle.acquire();
                }
                return this.treeHandle;
            }
            return this.treeHandle.acquire();
        }
    
    
        /**
         * @param context
         * @param name
         */
        private void setContext ( SmbResource context, String name ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    };
    
    // MutexBase and Mutex implement mutex on pthreads-based platforms. They
    // are used in conjunction with class MutexLock:
    //
    //   Mutex mutex;
    //   ...
    //   MutexLock lock(&mutex);  // Acquires the mutex and releases it at the end
    //                            // of the current scope.
    //
    // MutexBase implements behavior for both statically and dynamically
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  10. cmd/erasure-object.go

    	if !opts.NoAuditLog {
    		auditObjectErasureSet(ctx, object, &er)
    	}
    
    	var unlockOnDefer bool
    	nsUnlocker := func() {}
    	defer func() {
    		if unlockOnDefer {
    			nsUnlocker()
    		}
    	}()
    
    	// Acquire lock
    	if !opts.NoLock {
    		lock := er.NewNSLock(bucket, object)
    		lkctx, err := lock.GetRLock(ctx, globalOperationTimeout)
    		if err != nil {
    			return nil, err
    		}
    		ctx = lkctx.Context()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top