Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,409 for turning (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    The disadvantage is that there is no information what the different version suffixes mean semantically.
    So in the case of conflict, Gradle would just pick the highest version when comparing the version strings.
    
    Turning this into proper variants is a bit more tricky, as Gradle first selects a version of a module and then selects the best fitting variant.
    So the concept that variants are encoded as versions is not supported directly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. test/turing.go

    // run
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test simulating a Turing machine, sort of.
    
    package main
    
    // brainfuck
    
    var p, pc int
    var a [30000]byte
    
    const prog = "++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.!"
    
    func scan(dir int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 893 bytes
    - Viewed (0)
  3. pilot/pkg/features/tuning.go

    // limitations under the License.
    
    package features
    
    import (
    	"runtime"
    	"time"
    
    	"istio.io/istio/pkg/env"
    )
    
    // Define performance tuning related features here.
    var (
    	MaxConcurrentStreams = env.Register(
    		"ISTIO_GPRC_MAXSTREAMS",
    		100000,
    		"Sets the maximum number of concurrent grpc streams.",
    	).Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (1)
  4. clause/returning.go

    package clause
    
    type Returning struct {
    	Columns []Column
    }
    
    // Name where clause name
    func (returning Returning) Name() string {
    	return "RETURNING"
    }
    
    // Build build where clause
    func (returning Returning) Build(builder Builder) {
    	if len(returning.Columns) > 0 {
    		for idx, column := range returning.Columns {
    			if idx > 0 {
    				builder.WriteByte(',')
    			}
    
    			builder.WriteQuoted(column)
    		}
    	} else {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Oct 27 23:56:55 UTC 2021
    - 681 bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    	// We wrote a new go line. For reproducibility,
    	// if the toolchain running right now is newer than the new toolchain line,
    	// update the toolchain line to record the newer toolchain.
    	// The user never sets the toolchain explicitly in a 'go work' command,
    	// so this is only happening as a result of a go or toolchain line found
    	// in a module.
    	// If the toolchain running right now is a dev toolchain (like "go1.21")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

    }
    
    # Wait for kubelet and kube-proxy to be ready within 10s.
    function WaitFor_KubeletAndKubeProxyReady {
      $waited = 0
      $timeout = 10
      while (((Get-Service kube-proxy).Status -ne 'Running' -or (Get-Service kubelet).Status -ne 'Running') -and $waited -lt $timeout) {
        Start-Sleep 1
        $waited++
      }
    
      # Timeout occurred
      if ($waited -ge $timeout) {
        Log-Output "$(Get-Service kube* | Out-String)"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. src/testdata/Isaac.Newton-Opticks.txt

    Bodies, as Oil, Tallow, Wax, Wood, fossil Coals, Pitch, Sulphur, by
    flaming waste and vanish into burning Smoke, which Smoke, if the Flame
    be put out, is very thick and visible, and sometimes smells strongly,
    but in the Flame loses its smell by burning, and according to the nature
    of the Smoke the Flame is of several Colours, as that of Sulphur blue,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  8. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    else is a red hot Iron than Fire? And what else is a burning Coal than red hot Wood? _Qu._ 10. Is not Flame a Vapour, Fume or Exhalation heated red hot, that is, so hot as to shine? For Bodies do not flame without emitting a copious Fume, and this Fume burns in the Flame. The _Ignis Fatuus_ is a Vapour shining without heat, and is there not the same difference between this Vapour and Flame, as between rotten Wood shining without heat and burning Coals of Fire? In distilling hot Spirits, if the Head...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  9. manifests/helm-profiles/warning-edit.txt

    # WARNING: DO NOT EDIT, THIS FILE IS A COPY.
    # The original version of this file is located at /manifests/helm-profiles directory.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 218 bytes
    - Viewed (0)
  10. pkg/bootstrap/testdata/running.proxycfg

    Rama Chavali <******@****.***> 1671589100 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 483 bytes
    - Viewed (0)
Back to top