Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 127 for addLink (0.49 sec)

  1. 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)
  2. 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)
  3. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

         * to ["a", "b", ""].
         */
        private fun pop() {
          val removed = encodedPathSegments.removeAt(encodedPathSegments.size - 1)
    
          // Make sure the path ends with a '/' by either adding an empty string or clearing a segment.
          if (removed.isEmpty() && encodedPathSegments.isNotEmpty()) {
            encodedPathSegments[encodedPathSegments.size - 1] = ""
          } else {
            encodedPathSegments.add("")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    			t.Errorf("MustParse did not panic")
    		}
    	}()
    	_ = MustParse("Non-Numeric")
    }
    
    // TestQuantityAddZeroPreservesSuffix verifies that a suffix is preserved
    // independent of the order of operations when adding a zero and non-zero val
    func TestQuantityAddZeroPreservesSuffix(t *testing.T) {
    	testValues := []string{"100m", "1Gi"}
    	zero := MustParse("0")
    	for _, testValue := range testValues {
    		value := MustParse(testValue)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		// already existing log.
    		//
    		// We are checking to see if the log directory exists, and find
    		// the latest restartCount by checking the log name -
    		// {restartCount}.log - and adding 1 to it.
    		logDir := BuildContainerLogsDirectory(m.podLogsDirectory, pod.Namespace, pod.Name, pod.UID, container.Name)
    		restartCount, err = calcRestartCountByLogDir(logDir)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/types.go

    //
    // The CEL expressions of a policy must have a computed CEL cost below the maximum
    // CEL budget. Each evaluation of the policy is given an independent CEL cost budget.
    // Adding/removing policies, bindings, or params can not affect whether a
    // given (policy, binding, param) combination is within its own CEL budget.
    type ValidatingAdmissionPolicyBinding struct {
    	metav1.TypeMeta
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
Back to top