Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 127 for addLink (0.21 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

      public static <E extends @Nullable Object> CopyOnWriteArraySet<E> newCopyOnWriteArraySet(
          Iterable<? extends E> elements) {
        // We copy elements to an ArrayList first, rather than incurring the
        // quadratic cost of adding them to the COWAS directly.
        Collection<? extends E> elementsCollection =
            (elements instanceof Collection)
                ? (Collection<? extends E>) elements
                : Lists.newArrayList(elements);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    	splitOf     SlKeyIdx // idx in slkeys slice in slotCanonicalizer
    	splitOffset int64
    }
    
    // lookup looks up a LocalSlot in the slot canonicalizer "sc", returning
    // a canonical index for the slot, and adding it to the table if need
    // be. Return value is the canonical slot index, and a boolean indicating
    // whether the slot was found in the table already (TRUE => found).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. cmd/object-api-multipart_test.go

    		// Since all available entries are listed, IsTruncated is expected to be false
    		// and NextMarkers are expected to empty.
    		{bucketNames[1], "", "", "", "", 3, listMultipartResults[20], nil, true},
    		// Adding  prefix (Test number 34-36).
    		{bucketNames[1], "min", "", "", "", 10, listMultipartResults[21], nil, true},
    		{bucketNames[1], "orange", "", "", "", 10, listMultipartResults[22], nil, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	} else {
    		factor = fmt.Sprintf("%.1fx", exceedFactor)
    	}
    	return fmt.Sprintf("%s exceeds budget by factor of %s (try simplifying the rule, or adding maxItems, maxProperties, and maxLength where arrays, maps, and strings are declared)", costName, factor)
    }
    
    var newlineMatcher = regexp.MustCompile(`[\n\r]+`) // valid newline chars in CEL grammar
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    For IDE problems outside of the Kotlin DSL script editor, please open issues in the corresponding IDE's issue tracker:
    
    * link:[JetBrains's IDEA issue tracker],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/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 `json:",inline"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ppc64/ssa.go

    			// Use REGTMP as index reg
    			p = s.Prog(ppc64.AMOVD)
    			p.From.Type = obj.TYPE_CONST
    			p.From.Offset = 16
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = ppc64.REGTMP
    
    			// Don't adding padding for
    			// alignment with small iteration
    			// counts.
    			if ctr > 3 {
    				p = s.Prog(obj.APCALIGN)
    				p.From.Type = obj.TYPE_CONST
    				p.From.Offset = 16
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/text/template/exec_test.go

    				if err != nil {
    					t.Error(err)
    				}
    			}
    		}()
    	}
    
    	wg.Wait()
    }
    
    // Issue 48215: embedded nil pointer causes panic.
    // Fixed by adding FieldByIndexErr to the reflect package.
    func TestIssue48215(t *testing.T) {
    	type A struct {
    		S string
    	}
    	type B struct {
    		*A
    	}
    	tmpl, err := New("").Parse(`{{ .S }}`)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	// Unrelated SA should not change anything
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.3"))[0].Address.GetWorkload().Waypoint.GetAddress().Address,
    		netip.MustParseAddr("10.0.0.2").AsSlice())
    
    	// Adding a new pod should also see the waypoint
    	s.addPods(t, "127.0.0.6", "pod6", "sa1", map[string]string{"app": "a"}, nil, true, corev1.PodRunning)
    	s.assertEvent(t, s.podXdsName("pod6"))
    	assert.Equal(t,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    		}
    	}
    
    	return patchMap, nil
    }
    
    // Returns a (recursive) strategic merge patch that yields modified when applied to original.
    // Including:
    // - Adding fields to the patch present in modified, missing from original
    // - Setting fields to the patch present in modified and original with different values
    // - Delete fields present in original, missing from modified through
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
Back to top