Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 131 for Reassociate (0.21 sec)

  1. test/codegen/arithmetic.go

    func divInt(v int64) int64 {
    	if v < 0 {
    		return 0
    	}
    	// amd64:-`.*SARQ.*63,`, -".*SHRQ", ".*SARQ.*[$]9,"
    	return v / 512
    }
    
    // The reassociate rules "x - (z + C) -> (x - z) - C" and
    // "(z + C) -x -> C + (z - x)" can optimize the following cases.
    func constantFold1(i0, j0, i1, j1, i2, j2, i3, j3 int) (int, int, int, int) {
    	// arm64:"SUB","ADD\t[$]2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Neq64 (And64 <t> x (Const64 <t> [y])) (Const64 <t> [y])) && oneBit64(y)
      => (Eq64 (And64 <t> x (Const64 <t> [y])) (Const64 <t> [0]))
    
    // Reassociate expressions involving
    // constants such that constants come first,
    // exposing obvious constant-folding opportunities.
    // Reassociate (op (op y C) x) to (op C (op x y)) or similar, where C
    // is constant, which pushes constants to the outside
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. src/go/ast/commentmap.go

    			if top := stack.pop(r.comment.Pos()); top != nil {
    				pg = top
    				pgend = fset.Position(pg.End())
    			}
    			// Try to associate a comment first with a node group
    			// (i.e., a node of "importance" such as a declaration);
    			// if that fails, try to associate it with the most recent
    			// node.
    			// TODO(gri) try to simplify the logic below
    			var assoc Node
    			switch {
    			case pg != nil &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupRootPlugin.kt

                    parameters.testPathToBinaryResultsDirs = allTasks.filterIsInstance<Test>().associate { it.path to it.binaryResultsDirectory.get().asFile }
    
                    val taskPathToReports = ******@****.***ks
                        .associate { it.path to it.genericHtmlReports() + it.findTraceJson() }
                        .filter { it.value.isNotEmpty() }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 06 10:57:13 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. src/text/template/template.go

    		}
    	}
    	return t, nil
    }
    
    // associate installs the new template into the group of templates associated
    // with t. The two are already known to share the common structure.
    // The boolean return value reports whether to store this tree as t.Tree.
    func (t *Template) associate(new *Template, tree *parse.Tree) bool {
    	if new.common != t.common {
    		panic("internal error: associate not common")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. pkg/controller/util/selectors/bimultimap.go

    				continue
    			}
    			if s.selector.Matches(set) {
    				selecting.objects[s.key] = s
    			}
    		}
    		// Associate selecting with labeled.
    		m.selectingByLabeled[labelsKey] = selecting
    	}
    	selecting := m.selectingByLabeled[labelsKey]
    	selecting.refCount++
    	for _, sObject := range selecting.objects {
    		// Associate labeled with selecting.
    		labeled := m.labeledBySelecting[sObject.selectorKey]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 21:41:32 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/valueProviders/envVarsSysPropsDo/kotlin/build.gradle.kts

    val jdkVariables = listOf("JDK_8", "JDK_11", "JDK_17")
    val jdkLocations = jdkVariables.filter { v ->
        System.getenv(v) != null
    }.associate { v ->
        v to System.getenv(v)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 177 bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/reflect/TypeToInstanceMap.java

       * may have been bound to a subtype.
       */
      @CheckForNull
      <T extends @NonNull B> T getInstance(TypeToken<T> type);
    
      /**
       * Maps the specified class to the specified value. Does <i>not</i> associate this value with any
       * of the class's supertypes.
       *
       * <p>{@code putInstance(Foo.class, foo)} is equivalent to {@code
       * putInstance(TypeToken.of(Foo.class), foo)}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Apr 22 01:15:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/reflect/TypeToInstanceMap.java

       * may have been bound to a subtype.
       */
      @CheckForNull
      <T extends @NonNull B> T getInstance(TypeToken<T> type);
    
      /**
       * Maps the specified class to the specified value. Does <i>not</i> associate this value with any
       * of the class's supertypes.
       *
       * <p>{@code putInstance(Foo.class, foo)} is equivalent to {@code
       * putInstance(TypeToken.of(Foo.class), foo)}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Apr 22 01:15:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/SessionData.java

    import org.apache.maven.api.annotations.Provider;
    import org.apache.maven.api.annotations.ThreadSafe;
    
    /**
     * A container for data that is specific to a session.
     * All components may use this storage to associate arbitrary data with a session.
     * <p>
     * Unlike a cache, this session data is not subject to purging. For this same reason, session data should also not be
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top