Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 742 for addAction (0.15 sec)

  1. src/internal/coverage/cmerge/merge.go

    		}
    	} else {
    		for i := 0; i < len(src); i++ {
    			dst[i] = m.SaturatingAdd(dst[i], src[i])
    		}
    	}
    	ovf := m.overflow
    	m.overflow = false
    	return nil, ovf
    }
    
    // Saturating add does a saturating addition of 'dst' and 'src',
    // returning added value or math.MaxUint32 if there is an overflow.
    // Overflows are recorded in case the client needs to track them.
    func (m *Merger) SaturatingAdd(dst, src uint32) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 23:26:34 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/debug/dwarf/open.go

    	return d.parseTypes(name, types)
    }
    
    // AddSection adds another DWARF section by name. The name should be a
    // DWARF section name such as ".debug_addr", ".debug_str_offsets", and
    // so forth. This approach is used for new DWARF sections added in
    // DWARF 5 and later.
    func (d *Data) AddSection(name string, contents []byte) error {
    	var err error
    	switch name {
    	case ".debug_addr":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/options/doc.go

    New kubeadm flags should always be defined in this package as a constant before their usage,
    in order to enforce naming consistency across different commands and to control flag proliferation.
    
    In addition to defining the flags, the package also contains set of utilities for flag management.
    
    For additional details about how flags are managed in phases, please refer to the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 04 18:46:55 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  4. releasenotes/notes/merge-svc.yaml

    area: traffic-management
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 07:49:37 UTC 2024
    - 912 bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/ClasspathCompareStrategyTest.groovy

            expect:
            changes(
                [:],
                [:]
            ) == []
        }
    
        def "trivial addition"() {
            expect:
            changes(
                ["one-new": fingerprint("one")],
                [:]
            ) == [added("one-new": "one")]
        }
    
        def "non-trivial addition"() {
            expect:
            changes(
                ["one-new": fingerprint("one"), "two-new": fingerprint("two")],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/resource/v1alpha2/namedresources.go

    	// Selector is a CEL expression which must evaluate to true if a
    	// resource instance is suitable. The language is as defined in
    	// https://kubernetes.io/docs/reference/using-api/cel/
    	//
    	// In addition, for each type NamedResourcesin AttributeValue there is a map that
    	// resolves to the corresponding value of the instance under evaluation.
    	// For example:
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionListenerForDepMgmt.java

    /**
     * Do not use!
     * <p>
     * Should only be implemented by DebugResolutionListener.  Remove this
     * when the ResolutionListener interface deprecation of the manageArtifact
     * method (and the [yet to be done] addition of these methods to that
     * interface) has had a chance to propagate to all interested plugins.
     */
    @Deprecated
    public interface ResolutionListenerForDepMgmt {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmManagerDelegate.java

     * under the License.
     */
    package org.apache.maven.classrealm;
    
    import org.codehaus.plexus.classworlds.realm.ClassRealm;
    
    /**
     * ClassRealmManagerDelegate is used to perform addition configuration of
     * class realms created by ClassRealmManager.
     *
     */
    public interface ClassRealmManagerDelegate {
    
        void setupRealm(ClassRealm classRealm, ClassRealmRequest request);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/MethodMixIn.java

     * limitations under the License.
     */
    
    package org.gradle.internal.metaobject;
    
    /**
     * A decorated domain object type may optionally implement this interface to dynamically expose methods in addition to those declared statically on the type.
     *
     * Note that when a type implements this interface, dynamic Groovy dispatch will not be used to discover opaque methods. That is, methods such as methodMissing() will be ignored.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-child.xml

      <description>
        artifactId == "child-artifact-id"
        but expect path on SCM and site == "child"
        feature: support "project.directory" property, ressembling future model addition of "directory" element along "artifactId"
      </description>
    
      <properties>
        <project.directory>child</project.directory>
      </properties>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 1.6K bytes
    - Viewed (0)
Back to top