Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Minifying (0.36 sec)

  1. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/BuildStarted.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.protocol;
    
    import org.gradle.launcher.daemon.diagnostics.DaemonDiagnostics;
    
    /**
     * Returned when the daemon starts a build command, signifying that it has begun processing it.
     */
    public class BuildStarted extends Message {
    
        private final DaemonDiagnostics diagnostics;
    
        public BuildStarted(DaemonDiagnostics diagnostics) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // execution mode, resource ops with the same `shared_name` attribute point to
    // the same underlying resource. This is not true in the eager execution mode.
    // Lifting resource ops as arguments will help unifying them across functions.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLiftHashTableOpsAsArgsPass();
    
    // Creates a pass that merges duplicate resource ops in each function. Two
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. src/runtime/tracestack.go

    	// Since events contain only stack id rather than whole stack trace,
    	// we can allow quite large values here.
    	traceStackSize = 128
    
    	// logicalStackSentinel is a sentinel value at pcBuf[0] signifying that
    	// pcBuf[1:] holds a logical stack requiring no further processing. Any other
    	// value at pcBuf[0] represents a skip value to apply to the physical stack in
    	// pcBuf[1:] after inline expansion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/go/types/unify.go

    		}
    		handles[x] = &t
    	}
    	return &unifier{handles, 0, enableInterfaceInference}
    }
    
    // unifyMode controls the behavior of the unifier.
    type unifyMode uint
    
    const (
    	// If assign is set, we are unifying types involved in an assignment:
    	// they may match inexactly at the top, but element types must match
    	// exactly.
    	assign unifyMode = 1 << iota
    
    	// If exact is set, types unify if they are identical (or can be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/unify.go

    		}
    		handles[x] = &t
    	}
    	return &unifier{handles, 0, enableInterfaceInference}
    }
    
    // unifyMode controls the behavior of the unifier.
    type unifyMode uint
    
    const (
    	// If assign is set, we are unifying types involved in an assignment:
    	// they may match inexactly at the top, but element types must match
    	// exactly.
    	assign unifyMode = 1 << iota
    
    	// If exact is set, types unify if they are identical (or can be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. doc/go_spec.html

    field types unify.
    The type argument for <code>P</code> is not known yet (there is no map entry),
    so unifying <code>P</code> with <code>string</code> adds
    the mapping <code>P ➞ string</code> to the map.
    Unifying the types of the <code>list</code> field requires
    unifying <code>[]P</code> and <code>[]string</code> and
    thus <code>P</code> and <code>string</code>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top