Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for popf (0.12 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                stk.push(new ActivationFrame("activation", Optional.of(target)));
                try {
                    return super.transformActivation(target);
                } finally {
                    stk.pop();
                }
            }
    
            @Override
            protected Activation.Builder transformActivation_ActiveByDefault(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      %3 = "tf.opD"(%2) {_xla_compile_device_type = "TPU", _replication_info = "replicate", is_stateless = true} : (tensor<i1>) -> tensor<i1>
      %4 = "tf.opE"() {is_stateless = true} : () -> tensor<i1>
      %5 = "tf.opF"(%arg0) {_xla_compile_device_type = "TPU", _replication_info = "replicate", is_stateless = true} : (tensor<i1>) -> tensor<i1>
      func.return %2, %3, %5 : tensor<i1>, tensor<i1>, tensor<i1>
    }
    
    // CHECK:      "tf.opB"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

    import static org.objectweb.asm.Opcodes.IRETURN;
    import static org.objectweb.asm.Opcodes.LCONST_0;
    import static org.objectweb.asm.Opcodes.NEW;
    import static org.objectweb.asm.Opcodes.POP;
    import static org.objectweb.asm.Opcodes.PUTFIELD;
    import static org.objectweb.asm.Opcodes.PUTSTATIC;
    import static org.objectweb.asm.Opcodes.RETURN;
    import static org.objectweb.asm.Opcodes.V1_6;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

      def res_slice(self, ns, types_ns, node_or_slice, value, slice_):
        if not value:
          return value
    
        if isinstance(value, set):
          type_tuple = value.pop()
          if isinstance(type_tuple, tuple):
            value = {type_tuple[node_or_slice]}
          else:
            value = {type_tuple}
    
        assert len(value) == 1
        value, = tuple(value)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  5. src/go/printer/testdata/parser.go

    		ident.Obj = scope.Lookup(ident.Name)
    		if ident.Obj == nil && p.mode&DeclarationErrors != 0 {
    			p.error(ident.Pos(), fmt.Sprintf("label %s undefined", ident.Name))
    		}
    	}
    	// pop label scope
    	p.targetStack = p.targetStack[0:n]
    	p.labelScope = p.labelScope.Outer
    }
    
    func (p *parser) declare(decl any, scope *ast.Scope, kind ast.ObjKind, idents ...*ast.Ident) {
    	for _, ident := range idents {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
Back to top