Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for Scans (0.04 sec)

  1. pkg/kubelet/cm/devicemanager/manager.go

    	}
    	if resp != nil && len(resp.ContainerResponses) > 0 {
    		return sets.New[string](resp.ContainerResponses[0].DeviceIDs...), nil
    	}
    	return sets.New[string](), nil
    }
    
    // sanitizeNodeAllocatable scans through allocatedDevices in the device manager
    // and if necessary, updates allocatableResource in nodeInfo to at least equal to
    // the allocated capacity. This allows pods that have already been scheduled on
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    The APIs report rich, structured information about problems happening during the build.
    This information can be used by different user interfaces such as Gradle's console output, Build Scans, or IDEs to communicate problems to the user in the most appropriate way.
    
    The following example shows an issue reported from a plugin:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager.go

    	// TerminatePod resets the container status for the provided pod to terminated and triggers
    	// a status update.
    	TerminatePod(pod *v1.Pod)
    
    	// RemoveOrphanedStatuses scans the status cache and removes any entries for pods not included in
    	// the provided podUIDs.
    	RemoveOrphanedStatuses(podUIDs map[types.UID]bool)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableMap.java

            default:
              entriesUsed = true;
              return JdkBackedImmutableMap.create(size, entries, /* throwIfDuplicateKeys= */ true);
          }
        }
    
        /**
         * Scans the first {@code size} elements of {@code entries} looking for duplicate keys. If
         * duplicates are found, a new correctly-sized array is returned with the same elements (up to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 30 14:39:16 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    	// freeindex is the slot index between 0 and nelems at which to begin scanning
    	// for the next free object in this span.
    	// Each allocation scans allocBits starting at freeindex until it encounters a 0
    	// indicating a free object. freeindex is then adjusted so that subsequent scans begin
    	// just past the newly discovered free object.
    	//
    	// If freeindex == nelem, this span has no free objects.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. cmd/metrics-v2.go

    			},
    			{
    				Description: MetricDescription{
    					Namespace: nodeMetricNamespace,
    					Subsystem: scannerSubsystem,
    					Name:      "bucket_scans_started",
    					Help:      "Total number of bucket scans started since server uptime",
    					Type:      counterMetric,
    				},
    				Value: float64(globalScannerMetrics.lifetime(scannerMetricScanBucketDrive) + uint64(globalScannerMetrics.activeDrives())),
    			},
    			{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  7. src/cmd/cgo/doc.go

    	// #include <stdio.h>
    	import "C"
    
    For more details about the usage of cgo, see the documentation
    comment at the top of this file.
    
    Understanding C
    
    Cgo scans the Go source files that import "C" for uses of that
    package, such as C.puts. It collects all such identifiers. The next
    step is to determine each kind of name. In C.xxx the xxx might refer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          Thread w = thread;
          if (w != null) {
            thread = null;
            LockSupport.unpark(w);
          }
        }
      }
    
      /**
       * Marks the given node as 'deleted' (null waiter) and then scans the list to unlink all deleted
       * nodes. This is an O(n) operation in the common case (and O(n^2) in the worst), but we are saved
       * by two things.
       *
       * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  9. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          Thread w = thread;
          if (w != null) {
            thread = null;
            LockSupport.unpark(w);
          }
        }
      }
    
      /**
       * Marks the given node as 'deleted' (null waiter) and then scans the list to unlink all deleted
       * nodes. This is an O(n) operation in the common case (and O(n^2) in the worst), but we are saved
       * by two things.
       *
       * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  10. src/cmd/go/internal/work/exec.go

    	// asm runs the assembler in a specific directory on specific files
    	// and returns a list of named output files.
    	asm(b *Builder, a *Action, sfiles []string) ([]string, error)
    	// symabis scans the symbol ABIs from sfiles and returns the
    	// path to the output symbol ABIs file, or "" if none.
    	symabis(b *Builder, a *Action, sfiles []string) (string, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top