Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for customFile (0.33 sec)

  1. pkg/test/framework/components/echo/kube/deployment.go

    			if err != nil {
    				return fmt.Errorf("failed writing %q to %s: %v", addition, clusterEnv, err)
    			}
    		}
    	}
    	if !ctx.Environment().(*kube.Environment).Settings().LoadBalancerSupported {
    		// customize cluster.env with NodePort mapping
    		_, err = f.WriteString(fmt.Sprintf("ISTIO_PILOT_PORT=%d\n", istiodAddr.Port()))
    		if err != nil {
    			return err
    		}
    	}
    	return err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    
    === Ant goals
    
    Many Maven builds rely on the AntRun plugin to customize the build without the overhead of implementing a custom Maven plugin.
    Gradle has no equivalent plugin because Ant is a first-class citizen in Gradle builds, via the `ant` object.
    For example, you can use Ant's Echo task like this:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    With Maven, this could have unwanted impact on resolved versions.
    --
    
    [NOTE]
    ====
    https://ant.apache.org/ivy/[Apache Ivy] is a very flexible dependency management tool.
    It offers the possibility to customize dependency resolution, including conflict resolution.
    
    This flexibility comes with the price of making it hard to reason about.
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    Script Plugins :: Script plugins are Groovy DSL or Kotlin DSL scripts that are applied directly to a Gradle build script using the `apply from:` syntax.
    They are applied inline within a build script to add functionality or customize the build process.
    They are simple to use.
    
    A plugin often starts as a script plugin (because they are easy to write).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_2x.md

             .build());
        ```
    
     *  **Interceptors lists are now deep-copied by `OkHttpClient.clone()`.**
        Previously clones shared interceptors, which made it difficult to customize
        the interceptors on a request-by-request basis.
    
     *  New: `Headers.toMultimap()`.
     *  New: `RequestBody.create(MediaType, ByteString)`.
     *  New: `ConnectionSpec.isCompatible(SSLSocket)`.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  6. src/net/http/httputil/reverseproxy.go

    // target's path is "/base" and the incoming request was for "/dir",
    // the target request will be for /base/dir.
    //
    // NewSingleHostReverseProxy does not rewrite the Host header.
    //
    // To customize the ReverseProxy behavior beyond what
    // NewSingleHostReverseProxy provides, use ReverseProxy directly
    // with a Rewrite function. The ProxyRequest SetURL method
    // may be used to route the outbound request. (Note that SetURL,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/constants/constants.go

    	// This file should exist under KubeletRunDirectory
    	KubeletConfigurationFileName = "config.yaml"
    
    	// KubeletEnvFileName is a file "kubeadm init" writes at runtime. Using that interface, kubeadm can customize certain
    	// kubelet flags conditionally based on the environment at runtime. Also, parameters given to the configuration file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    -----------
    helloTask - Hello task
    ----
    
    In contrast, `./gradlew tasks --all` will show all tasks; _hidden_ and _visible_ tasks are listed.
    
    [[sec:grouping_tasks]]
    == Grouping tasks
    
    If you want to customize which tasks are shown to users when listed, you can group tasks and set the visibility of each group.
    
    NOTE: Remember, even if you _hide_ tasks, they are still available, and Gradle can still run them.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. pkg/kubelet/metrics/metrics.go

    			Subsystem: KubeletSubsystem,
    			Name:      RunPodSandboxDurationKey,
    			Help:      "Duration in seconds of the run_podsandbox operations. Broken down by RuntimeClass.Handler.",
    			// Use DefBuckets for now, will customize the buckets if necessary.
    			Buckets:        metrics.DefBuckets,
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"runtime_handler"},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    			// This metric is used for verifying api call latencies SLO,
    			// as well as tracking regressions in this aspects.
    			// Thus we customize buckets significantly, to empower both usecases.
    			Buckets: []float64{0.005, 0.025, 0.05, 0.1, 0.2, 0.4, 0.6, 0.8, 1.0, 1.25, 1.5, 2, 3,
    				4, 5, 6, 8, 10, 15, 20, 30, 45, 60},
    			StabilityLevel: compbasemetrics.STABLE,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
Back to top