Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 382 for Commands (0.36 sec)

  1. src/cmd/go/internal/modfetch/codehost/vcs.go

    		if err != nil {
    			return nil, &VCSError{err}
    		}
    		return repo, nil
    	})
    }
    
    var vcsRepoCache par.ErrCache[vcsCacheKey, Repo]
    
    type vcsRepo struct {
    	mu lockedfile.Mutex // protects all commands, so we don't have to decide which are safe on a per-VCS basis
    
    	remote string
    	cmd    *vcsCmd
    	dir    string
    
    	tagsOnce sync.Once
    	tags     map[string]bool
    
    	branchesOnce sync.Once
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/text/template/exec.go

    		return reflect.ValueOf(word.True)
    	case *parse.DotNode:
    		return dot
    	case *parse.NilNode:
    		s.errorf("nil is not a command")
    	case *parse.NumberNode:
    		return s.idealConstant(word)
    	case *parse.StringNode:
    		return reflect.ValueOf(word.Text)
    	}
    	s.errorf("can't evaluate command %q", firstWord)
    	panic("not reached")
    }
    
    // idealConstant is called to return the value of a number in a context where
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry_logging.go

    		cfg.Attributes = &otlpcommon.KeyValueList{
    			Values: ConvertStructToAttributeKeyValues(labels.Fields),
    		}
    	}
    
    	// it's unnecessary to check proxy version here,
    	// users should add CEL/METADATA/REQ_WITHOUT_QUERY commands after all proxy upgraded to 1.23+.
    	// Otherwise, the configuration will be rejected.
    	cfg.Formatters = accessLogFormatters(format, labels)
    
    	return cfg
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. src/cmd/go/internal/envcmd/env.go

    		case '%':
    			b.WriteString("%%")
    		case '<', '>', '|', '&', '^':
    			// These are special characters that need to be escaped with ^. See
    			// https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/set_1.
    			b.WriteByte('^')
    			b.WriteByte(x)
    		default:
    			b.WriteByte(x)
    		}
    	}
    	return b.String()
    }
    
    func printEnvAsJSON(env []cfg.EnvVar, onlyChanged bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    <4> Add dependencies specific to the `functionalTest` test suite
    
    === Method 2: Use `withType`, `matching` and `configureEach`
    
    This method adds filtering commands to only apply the configuration to a subset of the test suites, as identified by name.
    
    ====
    include::sample[dir="snippets/testing/test-suite-multi-configure-each-matching/kotlin",files="build.gradle.kts[tags=multi-configure]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    	// Defined for testing
    	elfOpen = elf.Open
    )
    
    // binrep is an immutable representation for Binutils.  It is atomically
    // replaced on every mutation to provide thread-safe access.
    type binrep struct {
    	// Commands to invoke.
    	llvmSymbolizer      string
    	llvmSymbolizerFound bool
    	addr2line           string
    	addr2lineFound      bool
    	nm                  string
    	nmFound             bool
    	objdump             string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

        }
    
        GradleExecuter createExecuter() {
            new GradleContextualExecuter(distribution, temporaryFolder, getBuildContext())
        }
    
        /**
         * Some integration tests need to run git commands in test directory,
         * but distributed-test-remote-executor has no .git directory so we init a "dummy .git dir".
         */
        void initGitDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure.sh

      fi
    
      # Verify presence and print versions of ctr, containerd, runc
      if ! command -v ctr >/dev/null 2>&1; then
        echo "ERROR ctr not found. Aborting."
        exit 2
      fi
      ctr --version
      if ! command -v containerd >/dev/null 2>&1; then
        echo "ERROR containerd not found. Aborting."
        exit 2
      fi
      containerd --version
      if ! command -v runc >/dev/null 2>&1; then
        echo "ERROR runc not found. Aborting."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/cache.go

    	// not a problem for the go command itself, but may be an issue if the
    	// cache is being served by a GOPROXY HTTP server. This will be corrected
    	// the next time a new version of the module is fetched and the file is rewritten.
    	// TODO(matloob): golang.org/issue/43313 covers adding a go mod verify
    	// command that removes module versions that fail checksums. It should also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. hack/lib/golang.sh

      # when running in a container, please see https://github.com/golang/go/issues/33803
      if [[ -z "${GOMAXPROCS:-}" ]]; then
        if ! command -v ncpu >/dev/null 2>&1; then
          go -C "${KUBE_ROOT}/hack/tools" install ./ncpu || echo "Will not automatically set GOMAXPROCS"
        fi
        if command -v ncpu >/dev/null 2>&1; then
          GOMAXPROCS=$(ncpu)
          export GOMAXPROCS
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top