Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for Scans (0.04 sec)

  1. platforms/documentation/docs/src/main/resources/footer.html

                        <li itemprop="name"><a href="https://gradle.com/develocity/" itemprop="url">Develocity</a></li>
                        <li itemprop="name"><a href="https://gradle.com/build-scans/" itemprop="url">Build Scan™</a></li>
                        <li itemprop="name"><a href="https://gradle.com/build-cache/" itemprop="url">Build Cache</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    // scanned from numeric database columns into *string, scans into
    // numeric types are checked for overflow. For example, a float64 with
    // value 300 or a string with value "300" can scan into a uint16, but
    // not into a uint8, though float64(255) or "255" can scan into a
    // uint8. One exception is that scans of some float64 numbers to
    // strings may lose information when stringifying. In general, scan
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. ReadMe.md

    [![Revved up by Develocity](https://img.shields.io/badge/Revved%20up%20by-Develocity-06A0CE?logo=Gradle&labelColor=02303A)](https://ge.jetbrains.com/scans?search.rootProjectNames=Kotlin)
    
    # Kotlin Programming Language
    
    Welcome to [Kotlin](https://kotlinlang.org/)!   
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. src/cmd/pack/pack.go

    			a, err = archive.New(f)
    		}
    	}
    	if err != nil {
    		log.Fatal(err)
    	}
    	return &Archive{
    		a:        a,
    		files:    files,
    		matchAll: len(files) == 0,
    	}
    }
    
    // scan scans the archive and executes the specified action on each entry.
    func (ar *Archive) scan(action func(*archive.Entry)) {
    	for i := range ar.a.Entries {
    		e := &ar.a.Entries[i]
    		action(e)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconstruct_common.go

    		return gvi.deviceMounter.GetDeviceMountPath(gvi.volumeSpec)
    	} else {
    		return "", fmt.Errorf("blockVolumeMapper or deviceMounter required")
    	}
    }
    
    // getVolumesFromPodDir scans through the volumes directories under the given pod directory.
    // It returns a list of pod volume information including pod's uid, volume's plugin name, mount path,
    // and volume spec name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. docs/metrics/v3.md

    | `minio_scanner_bucket_scans_finished`      | `counter` | Total number of bucket scans finished since server start   | `server` |
    | `minio_scanner_bucket_scans_started`       | `counter` | Total number of bucket scans started since server start    | `server` |
    | `minio_scanner_directories_scanned`        | `counter` | Total number of directories scanned since server start     | `server` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/list.md

    |:-------------------------------------------|:------------------------------------------------------------|
    | `minio_node_scanner_bucket_scans_finished` | Total number of bucket scans finished since server start.   |
    | `minio_node_scanner_bucket_scans_started`  | Total number of bucket scans started since server start.    |
    | `minio_node_scanner_directories_scanned`   | Total number of directories scanned since server start.     |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  8. cmd/global-heal.go

    	"github.com/minio/pkg/v3/wildcard"
    	"github.com/minio/pkg/v3/workers"
    )
    
    const (
    	bgHealingUUID = "0000-0000-0000-0000"
    )
    
    // NewBgHealSequence creates a background healing sequence
    // operation which scans all objects and heal them.
    func newBgHealSequence() *healSequence {
    	reqInfo := &logger.ReqInfo{API: "BackgroundHeal"}
    	ctx, cancelCtx := context.WithCancel(logger.SetReqInfo(GlobalContext, reqInfo))
    
    	hs := madmin.HealOpts{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. src/runtime/preempt.go

    }
    
    //go:generate go run mkpreempt.go
    
    // asyncPreempt saves all user registers and calls asyncPreempt2.
    //
    // When stack scanning encounters an asyncPreempt frame, it scans that
    // frame and its parent frame conservatively.
    //
    // asyncPreempt is implemented in assembly.
    func asyncPreempt()
    
    //go:nosplit
    func asyncPreempt2() {
    	gp := getg()
    	gp.asyncSafePoint = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

                filter_quantized_type.getStorageTypeMin(),
                filter_quantized_type.getStorageTypeMax()),
            /*override=*/true);
      }
      return changed;
    }
    
    // This method scans the operations in the function to setup the initial
    // states for quantization parameter propagation.
    // TODO: b/323478683 - This algorithm assumes there are only one pair of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
Back to top