Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for cherries (0.18 sec)

  1. src/slices/zsortordered.go

    //
    // The paper gives O((M+N)*log(M)) as the number of assignments assuming a
    // rotation algorithm which uses O(M+N+gcd(M+N)) assignments. The argumentation
    // in the paper carries through for Swap operations, especially as the block
    // swapping rotate uses only O(M+N) Swaps.
    //
    // symMerge assumes non-degenerate arguments: a < m && m < b.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. src/slices/zsortanyfunc.go

    //
    // The paper gives O((M+N)*log(M)) as the number of assignments assuming a
    // rotation algorithm which uses O(M+N+gcd(M+N)) assignments. The argumentation
    // in the paper carries through for Swap operations, especially as the block
    // swapping rotate uses only O(M+N) Swaps.
    //
    // symMerge assumes non-degenerate arguments: a < m && m < b.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. pkg/security/security.go

    		if meta, ok := metadata.FromIncomingContext(ac.GrpcContext); ok {
    			return meta.Get(header)
    		}
    	} else if ac.Request != nil {
    		return ac.Request.Header.Values(header)
    	}
    	return nil
    }
    
    // Caller carries the identity and authentication source of a caller.
    type Caller struct {
    	AuthSource AuthSource
    	Identities []string
    
    	KubernetesInfo KubernetesInfo
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. internal/config/config.go

    func RegisterDefaultKVS(kvsMap map[string]KVS) {
    	for subSys, kvs := range kvsMap {
    		DefaultKVS[subSys] = kvs
    	}
    }
    
    // HelpSubSysMap - help for all individual KVS for each sub-systems
    // also carries a special empty sub-system which dumps
    // help for each sub-system key.
    var HelpSubSysMap = map[string]HelpKVS{}
    
    // RegisterHelpSubSys - this function saves
    // input help KVS for each sub-system globally,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  5. src/cmd/gofmt/gofmt.go

    		return nil
    	})
    	return <-c
    }
    
    // A reporter reports output, warnings, and errors.
    type reporter struct {
    	prev  <-chan *reporterState
    	state *reporterState
    }
    
    // reporterState carries the state of a reporter instance.
    //
    // Only one reporter at a time may have access to a reporterState.
    type reporterState struct {
    	out, err io.Writer
    	exitCode int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    	v := c.field()
    	v.Set(reflect.Append(v, reflect.Zero(v.Type().Elem())))
    	l := v.Len()
    	reflect.Copy(v.Slice(i+1, l), v.Slice(i, l))
    	v.Index(i).Set(reflect.ValueOf(n))
    	c.iter.index++
    }
    
    // application carries all the shared data so we can pass it around cheaply.
    type application struct {
    	pre, post ApplyFunc
    	cursor    Cursor
    	iter      iterator
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    And we add the corresponding native jar file so that each runtime variant now carries two files: the main jar and the native jar.
    
    In the build script, we can now request a specific variant and Gradle will fail with a selection error if more information is needed to make a decision.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. src/sort/gen_sort_variants.go

    //
    // The paper gives O((M+N)*log(M)) as the number of assignments assuming a
    // rotation algorithm which uses O(M+N+gcd(M+N)) assignments. The argumentation
    // in the paper carries through for Swap operations, especially as the block
    // swapping rotate uses only O(M+N) Swaps.
    //
    // symMerge assumes non-degenerate arguments: a < m && m < b.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

    def IsLegalNumpyRankedBroadcast :
        Constraint<CPred<"hlo::isLegalNumpyRankedBroadcast($0, $1, $2 ? $2.asArrayRef() : ArrayRef<int64_t>{})">,
        "broadcasting should be compatible with TF ops">;
    
    // Return a constant op that carries the shape of the given value.
    def ShapeToConst : NativeCodeCall<"ShapeToConst($_builder, $0)">;
    
    // Check if broadcast dimensions match Tensorflow convention.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    ====
    Choosing the right attributes to set is the hardest thing in this process, because they carry the semantics of the variant.
    Therefore, before adding _new attributes_, you should always ask yourself if there isn't an attribute which carries the semantics you need.
    If there isn't, then you may add a new attribute.
    When adding new attributes, you must also be careful because it's possible that it creates ambiguity during selection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top