Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for termination (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      %1 = "tf.VarHandleOp"() {container = "", shape = #tf_type.shape<>, shared_name = "x"} : () -> !tf_res
    
      "tf.opA"() ({
        "tf.AssignAddVariableOp"(%1, %0) : (!tf_res, tensor<f32>) -> ()
        "tf.terminator"() : () -> ()
      }) { _xla_compile_device_type = "TPU", _replication_info = "foo" } : () -> ()
      "tf.AssignAddVariableOp"(%1, %0) : (!tf_res, tensor<f32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      auto new_result_types = llvm::to_vector<4>(op_->getResultTypes());
      int result_region = isa<TF::WhileRegionOp>(op_) ? 1 : 0;
      Operation* terminator = op_->getRegion(result_region).front().getTerminator();
      auto extra_result_types =
          terminator->getOperands().drop_front(op_->getNumResults()).getTypes();
      new_result_types.insert(new_result_types.end(), extra_result_types.begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    then_branch: A region that computes the outputs of the op if cond = true.
        It returns a list of tensors using tf.yield (as the terminator). The
        types of these returned tensors is same as that of the else_branch
    else_branch: A region that computes the outputs of the op if cond = false.
        It returns a list of tensors using tf.yield (as the terminator). The
        types of these returned tensors is same as that of the then_branch
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    			lds.Lscnum = f.getXCOFFscnum(ldr.SymSect(sym))
    		case XTY_IMP:
    			lds.Lifile = int32(f.dynLibraries[ldr.SymDynimplib(sym)] + 1)
    		}
    		ldstr := &XcoffLdStr64{
    			size: uint16(len(ldr.SymName(sym)) + 1), // + null terminator
    			name: ldr.SymName(sym),
    		}
    		stlen += uint32(2 + ldstr.size) // 2 = sizeof ldstr.size
    		symtab = append(symtab, lds)
    		strtab = append(strtab, ldstr)
    
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    	// Deprecated: if this field is left at zero, session ticket keys will be
    	// automatically rotated every day and dropped after seven days. For
    	// customizing the rotation schedule or synchronizing servers that are
    	// terminating connections for the same host, use SetSessionTicketKeys.
    	SessionTicketKey [32]byte
    
    	// ClientSessionCache is a cache of ClientSessionState entries for TLS
    	// session resumption. It is only used by clients.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    			},
    			want: []framework.NodeScore{
    				{Name: "node-a", Score: 100},
    				{Name: "node-b", Score: 33},
    			},
    		},
    		{
    			name: "terminating Pods should be excluded",
    			pod: st.MakePod().Name("p").Label("foo", "").
    				SpreadConstraint(1, v1.LabelHostname, v1.ScheduleAnyway, fooSelector, nil, nil, nil, nil).
    				Obj(),
    			nodes: []*v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  7. src/go/printer/nodes.go

    		// Print a terminating comma if the next token is on a new line.
    		p.print(token.COMMA)
    		if isIncomplete {
    			p.print(newline)
    			p.print("// " + filteredMsg)
    		}
    		if ws == ignore && mode&noIndent == 0 {
    			// unindent if we indented
    			p.print(unindent)
    		}
    		p.print(formfeed) // terminating comma needs a line break to look good
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. pkg/controller/endpoint/endpoints_controller_test.go

    			},
    		}
    	}
    
    	makePod := func(phase v1.PodPhase, isReady bool, terminating bool) *v1.Pod {
    		statusCondition := v1.ConditionFalse
    		if isReady {
    			statusCondition = v1.ConditionTrue
    		}
    
    		now := metav1.Now()
    		deletionTimestamp := &now
    		if !terminating {
    			deletionTimestamp = nil
    		}
    		return &v1.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    		d.AddString(lsDwsym, dirs[k])
    	}
    	lsu.AddUint8(0) // terminator
    
    	// Emit file section.
    	for k := 0; k < len(files); k++ {
    		d.AddString(lsDwsym, files[k].base)
    		dwarf.Uleb128put(d, lsDwsym, int64(files[k].dir))
    		lsu.AddUint8(0) // mtime
    		lsu.AddUint8(0) // length
    	}
    	lsu.AddUint8(0) // terminator
    }
    
    // writelines collects up and chains together the symbols needed to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	Type    string
    	Name    string
    	Feature uint32
    	Mask    uint32
    	raw     RawSockaddrALG
    }
    
    func (sa *SockaddrALG) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	// Leave room for NUL byte terminator.
    	if len(sa.Type) > len(sa.raw.Type)-1 {
    		return nil, 0, EINVAL
    	}
    	if len(sa.Name) > len(sa.raw.Name)-1 {
    		return nil, 0, EINVAL
    	}
    
    	sa.raw.Family = AF_ALG
    	sa.raw.Feat = sa.Feature
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top