Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for frag (0.16 sec)

  1. src/crypto/tls/bogo_shim_test.go

    	certfile = flag.String("cert-file", "", "")
    
    	trustCert = flag.String("trust-cert", "", "")
    
    	minVersion = flag.Int("min-version", VersionSSL30, "")
    	maxVersion = flag.Int("max-version", VersionTLS13, "")
    
    	noTLS13 = flag.Bool("no-tls13", false, "")
    
    	requireAnyClientCertificate = flag.Bool("require-any-client-certificate", false, "")
    
    	shimWritesFirst = flag.Bool("shim-writes-first", false, "")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // the package.
    //
    // The -i flag causes clean to remove the corresponding installed
    // archive or binary (what 'go install' would create).
    //
    // The -n flag causes clean to print the remove commands it would execute,
    // but not run them.
    //
    // The -r flag causes clean to be applied recursively to all the
    // dependencies of the packages named by the import paths.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/CurrentProcess.java

            //  Currently it is hard to have a proper "-javaagent:/path/to/jar" in clients that start the daemon, so all code deals with a boolean flag shouldApplyAgent instead.
            //  It is also possible to have the agent attached at runtime, without the flag, so flag checking is preferred.
            jvmOptions.setAllJvmArgs(arguments.stream().filter(arg -> !AgentUtils.isGradleInstrumentationAgentSwitch(arg)).collect(Collectors.toList()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. doc/next/5-toolchain.md

    Any new references to standard library internal symbols will be disallowed.
    
    A linker command line flag `-checklinkname=0` can be used to disable
    this check, for debugging and experimenting purposes.
    
    <!-- CL 473495 -->
    When building a dynamically linked ELF binary (including PIE binary), the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. releasenotes/notes/otel-builtin-labels.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 151 bytes
    - Viewed (0)
  6. src/internal/syscall/unix/constants.go

    //go:build unix
    
    package unix
    
    const (
    	R_OK = 0x4
    	W_OK = 0x2
    	X_OK = 0x1
    
    	// NoFollowErrno is the error returned from open/openat called with
    	// O_NOFOLLOW flag, when the trailing component (basename) of the path
    	// is a symbolic link.
    	NoFollowErrno = noFollowErrno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 434 bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    				// it's a match.
    				if bytes.HasPrefix(src[commentStart:], []byte(cgoLdflag)) {
    					// Pull out the flag, and unquote it.
    					// This is what the compiler does.
    					flag := string(src[idx+len(cgoLdflag) : end])
    					flag = strings.TrimSpace(flag)
    					flag = strings.Trim(flag, `"`)
    					flags = append(flags, flag)
    				}
    				src = src[end:]
    				idx = bytes.Index(src, []byte(cgoLdflag))
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentStatus.java

         */
        static AgentStatus disabled() {
            return new DisabledAgentStatus();
        }
    
        /**
         * Returns {@link #allowed()} or {@link #disabled()} AgentStatus according to the value of the flag.
         *
         * @param agentInstrumentationAllowed if {@code true} then the returned status allows instrumentation
         */
        static AgentStatus of(boolean agentInstrumentationAllowed) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. cni/pkg/cmd/root.go

    			log.Errorf("Failed to start up UDS Log Server: %v", err)
    			return
    		}
    
    		// Creates a basic health endpoint server that reports health status
    		// based on atomic flag, as set by installer
    		// TODO nodeagent watch server should affect this too, and drop atomic flag
    		installDaemonReady, watchServerReady := nodeagent.StartHealthServer()
    
    		if cfg.InstallConfig.AmbientEnabled {
    			// Start ambient controller
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. pilot/pkg/features/telemetry.go

    	MetadataExchange = env.Register("PILOT_ENABLE_METADATA_EXCHANGE", true,
    		"If true, pilot will add metadata exchange filters, which will be consumed by telemetry filter.",
    	).Get()
    
    	// This is an experimental feature flag, can be removed once it became stable, and should introduced to Telemetry API.
    	MetricRotationInterval = env.Register("METRIC_ROTATION_INTERVAL", 0*time.Second,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top