Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 410 for overriding (0.74 sec)

  1. cmd/kubelet/app/server.go

    // the configurations in "10-config.conf" will be applied first, and then the configurations in "20-config.conf" will be applied,
    // potentially overriding the previous values.
    func mergeKubeletConfigurations(kubeletConfig *kubeletconfiginternal.KubeletConfiguration, kubeletDropInConfigDir string) error {
    	const dropinFileExtension = ".conf"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. cmd/kube-proxy/app/server.go

    		kubeConfig, err = rest.InClusterConfig()
    	} else {
    		// This creates a client, first loading any specified kubeconfig
    		// file, and then overriding the Master flag, if non-empty.
    		kubeConfig, err = clientcmd.NewNonInteractiveDeferredLoadingClientConfig(
    			&clientcmd.ClientConfigLoadingRules{ExplicitPath: config.Kubeconfig},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  3. ChangeLog.md

    - [`KT-64243`](https://youtrack.jetbrains.com/issue/KT-64243) K2: proper lazy resolution for fake overrides
    - [`KT-62891`](https://youtrack.jetbrains.com/issue/KT-62891) K2 IDE.  FP [EXPOSED_FUNCTION_RETURN_TYPE] on overriding library method which returns protected type
    - [`KT-62667`](https://youtrack.jetbrains.com/issue/KT-62667) K2: Cannot find enclosing declaration for KtNameReferenceExpression (on-air, imports)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      }
    
      /**
       * Tag interface marking trusted subclasses. This enables some optimizations. The implementation
       * of this interface must also be an AbstractFuture and must not override or expose for overriding
       * any of the public methods of ListenableFuture.
       */
      interface Trusted<V extends @Nullable Object> extends ListenableFuture<V> {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  5. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      }
    
      /**
       * Tag interface marking trusted subclasses. This enables some optimizations. The implementation
       * of this interface must also be an AbstractFuture and must not override or expose for overriding
       * any of the public methods of ListenableFuture.
       */
      interface Trusted<V extends @Nullable Object> extends ListenableFuture<V> {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  6. CHANGELOG/CHANGELOG-1.6.md

    * Fixed a bug where the --server, --token, and --certificate-authority flags were not overriding the related in-cluster configs when provided in a `kubectl` call inside a cluster. ([#39006](https://github.com/kubernetes/kubernetes/pull/39006), [@fabianofranz](https://github.com/fabianofranz))
    
    #### Other Notable Changes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    func (rs *Requirements) String() string {
    	return fmt.Sprintf("{%v %v}", rs.pruning, rs.rootModules)
    }
    
    // initVendor initializes rs.graph from the given list of vendored module
    // dependencies, overriding the graph that would normally be loaded from module
    // requirements.
    func (rs *Requirements) initVendor(vendorList []module.Version) {
    	rs.graphOnce.Do(func() {
    		roots := MainModules.Versions()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_test.go

    		t.Errorf("client ConnectionState contained unexpected SignedCertificateTimestamps after resumption: wanted %v, got %v",
    			oldSCTs, ccs.SignedCertificateTimestamps)
    	}
    
    	//  Only test overriding the SCTs for TLS 1.2, since in 1.3
    	// the server won't send the message containing them
    	if ver == VersionTLS13 {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    			); ok {
    				return drs
    			}
    		}
    	} else {
    		// If this is a namespace local DR in the same namespace, this must be meant for this proxy, so we do not
    		// need to worry about overriding other DRs with *.local type rules here. If we ignore this, then exportTo=. in
    		// root namespace would always be ignored
    		if _, drs, ok := MostSpecificHostMatch(service.Hostname,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/loader.go

    			pp.relocs[i].Set(rel.Off(), rel.Siz(), uint16(rel.Type()), rel.Add(), goobj.SymRef{PkgIdx: 0, SymIdx: uint32(rel.Sym())})
    		}
    
    		// Copy data
    		pp.data = r.Data(li)
    	}
    
    	// If we're overriding a data symbol, collect the associated
    	// Gotype, so as to propagate it to the new symbol.
    	auxs := r.Auxs(li)
    	pp.auxs = auxs
    
    	// Install new payload to global index space.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top