Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 664 for expand1 (0.17 sec)

  1. src/cmd/compile/internal/typecheck/subr.go

    	if t == nil || len(t.AllMethods()) != 0 {
    		return
    	}
    
    	// mark top-level method symbols
    	// so that expand1 doesn't consider them.
    	for _, f := range t.Methods() {
    		f.Sym.SetUniq(true)
    	}
    
    	// generate all reachable methods
    	slist = slist[:0]
    	expand1(t, true)
    
    	// check each method to be uniquely reachable
    	var ms []*types.Field
    	for i, sl := range slist {
    		slist[i].field = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // CHECK-DAG: %[[EXPAND_DIM0:.+]] = arith.constant dense<2> : tensor<1xi32>
    // CHECK: %[[EXPAND0:.+]] = "tfl.expand_dims"(%[[ARG0]], %[[EXPAND_DIM0]]) : (tensor<1x2x!quant.uniform<i8:f32, 2.000000e+00:3>>, tensor<1xi32>) -> tensor<1x2x1x!quant.uniform<i8:f32, 2.000000e+00:3>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  3. pkg/volume/csi/expander.go

    	if err != nil {
    		if inUseError(err) {
    			failedConditionErr := fmt.Errorf("Expander.NodeExpand failed to expand the volume : %w", volumetypes.NewFailedPreconditionError(err.Error()))
    			return false, failedConditionErr
    		}
    		return false, fmt.Errorf("Expander.NodeExpand failed to expand the volume : %w", err)
    	}
    	return true, nil
    }
    
    func inUseError(err error) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. pkg/controller/volume/expand/expand_controller.go

    		return nil
    	}
    
    	volumeResizerName := volumePlugin.GetPluginName()
    	return expc.expand(logger, pvc, pv, volumeResizerName)
    }
    
    func (expc *expandController) expand(logger klog.Logger, pvc *v1.PersistentVolumeClaim, pv *v1.PersistentVolume, resizerName string) error {
    	// if node expand is complete and pv's annotation can be removed, remove the annotation from pv and return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/hkdf/hkdf.go

    	n := copy(p, f.buf)
    	p = p[n:]
    
    	// Fill the rest of the buffer
    	for len(p) > 0 {
    		if f.counter > 1 {
    			f.expander.Reset()
    		}
    		f.expander.Write(f.prev)
    		f.expander.Write(f.info)
    		f.expander.Write([]byte{f.counter})
    		f.prev = f.expander.Sum(f.prev[:0])
    		f.counter++
    
    		// Copy the new batch into p
    		f.buf = f.prev
    		n = copy(p, f.buf)
    		p = p[n:]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. pkg/kubelet/container/helpers.go

    	missingKeys := sets.New[string]()
    	expanded := expansion.Expand(mount.SubPathExpr, func(key string) string {
    		value, ok := envmap[key]
    		if !ok || len(value) == 0 {
    			missingKeys.Insert(key)
    		}
    		return value
    	})
    
    	if len(missingKeys) > 0 {
    		return "", fmt.Errorf("missing value for %s", strings.Join(sets.List(missingKeys), ", "))
    	}
    	return expanded, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/ContentFilterable.java

         * they represent, so, for example, {@code \n} becomes newline. If this is undesirable then {@link #expand(Map, Action)}
         * should be used to disable this behavior.
         *
         * @param properties reference-to-value map for substitution
         * @return this
         */
        ContentFilterable expand(Map<String, ?> properties);
    
        /**
         * <p>Expands property references in each file as it is copied. More specifically, each file is transformed using
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/config/config.go

    func set(slice []string) map[string]bool {
    	s := make(map[string]bool, len(slice))
    	for _, v := range slice {
    		s[v] = true
    	}
    	return s
    }
    
    // Expand takes a counter defined with buckets and expands it into distinct
    // strings for each bucket
    func Expand(counter string) []string {
    	prefix, rest, hasBuckets := strings.Cut(counter, "{")
    	var counters []string
    	if hasBuckets {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/generate/generate.go

    environment variables with alphanumeric names, such as $GOFILE or
    $HOME, are expanded throughout the command line. The syntax for
    variable expansion is $NAME on all operating systems. Due to the
    order of evaluation, variables are expanded even inside quoted
    strings. If the variable NAME is not set, $NAME expands to the
    empty string.
    
    A directive of the form,
    
    	//go:generate -command xxx args...
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. src/reflect/export_test.go

    	}
    	// Extract size information.
    	argSize = abid.stackCallArgsSize
    	retOffset = abid.retOffset
    	frametype = toType(ft)
    
    	// Expand stack pointer bitmap into byte-map.
    	for i := uint32(0); i < abid.stackPtrs.n; i++ {
    		stack = append(stack, abid.stackPtrs.data[i/8]>>(i%8)&1)
    	}
    
    	// Expand register pointer bitmaps into byte-maps.
    	bool2byte := func(b bool) byte {
    		if b {
    			return 1
    		}
    		return 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top