Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 89 for addLine (0.12 sec)

  1. guava/src/com/google/common/collect/ImmutableSortedMap.java

       */
      private static <K, V> ImmutableSortedMap<K, V> fromEntries(
          Comparator<? super K> comparator,
          boolean sameComparator,
          Iterable<? extends Entry<? extends K, ? extends V>> entries) {
        // "adding" type params to an array of a raw type should be safe as
        // long as no one can ever cast that same array instance back to a
        // raw type.
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    				Kind:    reqScope.Kind.Kind,
    			})
    			route.Metadata(RouteMetaAction, strings.ToLower(action.Verb))
    			ws.Route(route)
    		}
    		// Note: update GetAuthorizerAttributes() when adding a custom handler.
    	}
    
    	apiResource.Verbs = make([]string, 0, len(kubeVerbs))
    	for kubeVerb := range kubeVerbs {
    		apiResource.Verbs = append(apiResource.Verbs, kubeVerb)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller.go

    	dsc.failedPodsBackoff = failedPodsBackoff
    
    	return dsc, nil
    }
    
    func (dsc *DaemonSetsController) addDaemonset(logger klog.Logger, obj interface{}) {
    	ds := obj.(*apps.DaemonSet)
    	logger.V(4).Info("Adding daemon set", "daemonset", klog.KObj(ds))
    	dsc.enqueueDaemonSet(ds)
    }
    
    func (dsc *DaemonSetsController) updateDaemonset(logger klog.Logger, cur, old interface{}) {
    	oldDS := old.(*apps.DaemonSet)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    			if err != nil {
    				klog.ErrorS(err, "Source Vip endpoint creation failed")
    				return
    			}
    		}
    	}
    
    	klog.V(3).InfoS("Syncing Policies")
    
    	// Program HNS by adding corresponding policies for each service.
    	for svcName, svc := range proxier.svcPortMap {
    		svcInfo, ok := svc.(*serviceInfo)
    		if !ok {
    			klog.ErrorS(nil, "Failed to cast serviceInfo", "serviceName", svcName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener.go

    	// Extract the current filter chain matches, for every new filter chain match being added, check if there is a matching
    	// one in previous filter chains, if so, skip adding this filter chain with a warning.
    
    	merged := make([]*filterChainOpts, 0, len(current.chains)+len(incoming))
    	// Start with the current listener's filter chains.
    	merged = append(merged, current.chains...)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                'sub/a.txt',
                'sub/dir/b.txt',
                'sub/d.txt',
                'c.txt',
                'sub/empty'
            )
        }
    
        def "is out-of-date when adding an empty directory"() {
            given:
            file("files/sub/a.txt").createFile()
            file("files/sub/dir/b.txt").createFile()
            file("files/c.txt").createFile()
            buildScript '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    }
    
    // CreateExtSym creates a new external symbol with the specified name
    // without adding it to any lookup tables, returning a Sym index for it.
    func (l *Loader) CreateExtSym(name string, ver int) Sym {
    	return l.newExtSym(name, ver)
    }
    
    // CreateStaticSym creates a new static symbol with the specified name
    // without adding it to any lookup tables, returning a Sym index for it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	addSubst := true
    
    	q := st.cvQualifiers()
    	if q != nil {
    		if len(st.str) == 0 {
    			st.fail("expected type")
    		}
    
    		// CV-qualifiers before a function type apply to
    		// 'this', so avoid adding the unqualified function
    		// type to the substitution list.
    		if st.str[0] == 'F' {
    			addSubst = false
    		}
    	}
    
    	var ret AST
    
    	// Use correct substitution for a template parameter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal.go

    	// in queue so HPAs are processed every resyncPeriod.
    	// Request is added here just in case last resync didn't insert request into the queue. This
    	// happens quite often because there is race condition between adding request after resyncPeriod
    	// and removing them from queue. Request can be added by resync before previous request is
    	// removed from queue. If we didn't add request here then in this case one request would be dropped
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       */
      private static <K, V> ImmutableSortedMap<K, V> fromEntries(
          Comparator<? super K> comparator,
          boolean sameComparator,
          Iterable<? extends Entry<? extends K, ? extends V>> entries) {
        // "adding" type params to an array of a raw type should be safe as
        // long as no one can ever cast that same array instance back to a
        // raw type.
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top