Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for overriding (0.29 sec)

  1. pkg/scheduler/apis/config/v1/default_plugins.go

    			// The default plugin is explicitly re-configured, update the default plugin accordingly.
    			if customPlugin, ok := enabledCustomPlugins[defaultEnabledPlugin.Name]; ok {
    				logger.Info("Default plugin is explicitly re-configured; overriding", "plugin", defaultEnabledPlugin.Name)
    				// Update the default plugin in place to preserve order.
    				defaultEnabledPlugin = customPlugin.plugin
    				replacedPluginIndex.Insert(customPlugin.index)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    To summarize:
    
    1. First, we used the `build` task to populate our local cache with task inputs and outputs -- we can imagine this was done a week ago.
    2. Then, we used the `clean` task to mimic switching branches -- overriding previous outputs.
    3. Finally, we used the `build` task -- unlike incremental builds, the previous outputs were stored in the local cache and could be reused.
    
    Gradle is efficient, especially with the local build cache turned on.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. releasenotes/notes/add-overwrite-flag.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 51312
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 16:00:06 UTC 2024
    - 255 bytes
    - Viewed (0)
  4. cmd/tier-sweeper.go

    // goiOpts := os.GetOpts()
    // gerr := objAPI.GetObjectInfo(ctx, bucket, object, goiOpts)
    //
    //	if gerr == nil {
    //	   os.SetTransitionState(goi)
    //	}
    //
    // // After the overwriting object operation is complete.
    //
    //	if jentry, ok := os.ShouldRemoveRemoteObject(); ok {
    //	    err := globalTierJournal.AddEntry(jentry)
    //	    logger.LogIf(ctx, err)
    //	}
    type objSweeper struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 17 05:09:58 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              # don't overwrite /etc/hosts since it's managed by kubeproxy
              #sudo sh -c 'cat /var/run/secrets/istio/bootstrap/hosts >> /etc/hosts'
    
              # since we're not overwriting /etc/hosts on k8s, verify that istiod hostname in /etc/hosts
              # matches the value generated by istioctl
              echo "checking istio host"
              SYSTEM_HOST=$(cat /etc/hosts | grep istiod)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. cni/pkg/install/cniconfig.go

    	return writeCNIConfig(ctx, marshalledJSON, cfg)
    }
    
    // writeCNIConfig will
    // 1. read in the existing CNI config file
    // 2. append the `istio`-specific entry
    // 3. write the combined result back out to the same path, overwriting the original.
    func writeCNIConfig(ctx context.Context, pluginConfig []byte, cfg *config.InstallConfig) (string, error) {
    	cniConfigFilepath, err := getCNIConfigFilepath(ctx, cfg.CNIConfName, cfg.MountedCNINetDir, cfg.ChainedCNIPlugin)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    use the `--profile` command-line option:
    
    [listing.terminal]
    ----
    $ gradle --profile <tasks>
    ----
    
    Each profile report has a timestamp in its name to avoid overwriting existing ones.
    
    The report displays a breakdown of the time taken to run the build.
    However, this breakdown is not as detailed as a build scan.
    The following profile report shows the different categories available:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/events.md

    !!! info
        In the `open()` function, the `mode="a"` means "append", so, the line will be added after whatever is on that file, without overwriting the previous contents.
    
    !!! tip
        Notice that in this case we are using a standard Python `open()` function that interacts with a file.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top