Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for composed (0.23 sec)

  1. src/cmd/link/internal/ld/lib.go

    	Segments = []*sym.Segment{&Segtext, &Segrodata, &Segrelrodata, &Segdata, &Segdwarf, &Segpdata, &Segxdata}
    )
    
    const pkgdef = "__.PKGDEF"
    
    var (
    	// externalobj is set to true if we see an object compiled by
    	// the host compiler that is not from a package that is known
    	// to support internal linking mode.
    	externalobj = false
    
    	// dynimportfail is a list of packages for which generating
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    			Effect: v1.TaintEffectNoSchedule,
    		})
    	}
    
    	// Get exist taints of node.
    	nodeTaints := taintutils.TaintSetFilter(node.Spec.Taints, func(t *v1.Taint) bool {
    		// only NoSchedule taints are candidates to be compared with "taints" later
    		if t.Effect != v1.TaintEffectNoSchedule {
    			return false
    		}
    		// Find unschedulable taint of node.
    		if t.Key == v1.TaintNodeUnschedulable {
    			return true
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

                if (i > 0 && comparator.compare((K) sortedKeys[i - 1], (K) sortedKeys[i]) == 0) {
                  throw new IllegalArgumentException(
                      "keys required to be distinct but compared as equal: "
                          + sortedKeys[i - 1]
                          + " and "
                          + sortedKeys[i]);
                }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      }
    };
    
    // Note that we ignore the second operand `max_num_elements` as we don't have
    // any restrictions on the number of elements we can support. So this may
    // have a different behavior compared to TensorFlow in case of errors.
    struct ConvertEmptyTensorList
        : public ConvertTensorListInitOp<TF::EmptyTensorListOp> {
      explicit ConvertEmptyTensorList(MLIRContext *context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    		return
    	}
    
    	// Remove target before writing it.
    	xremove(link[targ])
    	bgrun(&wg, "", link...)
    	bgwait(&wg)
    }
    
    // packagefile returns the path to a compiled .a file for the given package
    // path. Paths may need to be resolved with resolveVendor first.
    func packagefile(pkg string) string {
    	return pathf("%s/pkg/obj/go-bootstrap/%s_%s/%s.a", goroot, goos, goarch, pkg)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    // If there is no more specific cause, the result is "".
    func (check *Checker) incomparableCause(typ Type) string {
    	switch under(typ).(type) {
    	case *Slice, *Signature, *Map:
    		return check.kindString(typ) + " can only be compared to nil"
    	}
    	// see if we can extract a more specific error
    	var cause string
    	comparable(typ, true, nil, func(format string, args ...interface{}) {
    		cause = check.sprintf(format, args...)
    	})
    	return cause
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. src/net/http/request.go

    }
    
    // patIndex returns the index of name in the list of named wildcards of the
    // request's pattern, or -1 if there is no such name.
    func (r *Request) patIndex(name string) int {
    	// The linear search seems expensive compared to a map, but just creating the map
    	// takes a lot of time, and most patterns will just have a couple of wildcards.
    	if r.pat == nil {
    		return -1
    	}
    	i := 0
    	for _, seg := range r.pat.segments {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. src/cmd/dist/test.go

    		cgoTest("external", "testtls", "external", "")
    		switch {
    		case os == "aix":
    			// no static linking
    		case p == "freebsd/arm":
    			// -fPIC compiled tls code will use __tls_get_addr instead
    			// of __aeabi_read_tp, however, on FreeBSD/ARM, __tls_get_addr
    			// is implemented in rtld-elf, so -fPIC isn't compatible with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

    // evaluated N times, where N is 1 for policies/bindings that don't use
    // params, otherwise N is the number of parameters selected by the binding.
    //
    // 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/expr.go

    // If there is no more specific cause, the result is "".
    func (check *Checker) incomparableCause(typ Type) string {
    	switch under(typ).(type) {
    	case *Slice, *Signature, *Map:
    		return check.kindString(typ) + " can only be compared to nil"
    	}
    	// see if we can extract a more specific error
    	var cause string
    	comparable(typ, true, nil, func(format string, args ...interface{}) {
    		cause = check.sprintf(format, args...)
    	})
    	return cause
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top