Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 74 for nfinal (1.29 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // to OpBuilder after the remaining graph is converted to the Function.
      Status RemoveBackedges();
    
      // Restores backedges removed during shape inference to the final Function.
      Status AddBackedges();
    
      // Restores a single backedge in the Function by adding a replicated
      // operation before the dst operation.
      Status AddBackedge(mlir::Operation* sink, mlir::Operation* dst,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

    at any one time. This field holds the ratio of that limit to the level's nominal concurrency limit. When this field is non-nil, it must hold a non-negative integer and the limit is calculated as follows.\n\nBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )\n\nThe value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater than its own nominal concurrency limit (NominalCL). When this field is left `nil`, the limit is...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

    at any one time. This field holds the ratio of that limit to the level's nominal concurrency limit. When this field is non-nil, it must hold a non-negative integer and the limit is calculated as follows.\n\nBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )\n\nThe value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater than its own nominal concurrency limit (NominalCL). When this field is left `nil`, the limit is...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	CMPQ  inl, $192
    	JBE   openSSETail192
    	JMP   openSSETail256
    
    openSSEFinalize:
    	// Hash in the PT, AAD lengths
    	ADDQ ad_len+80(FP), acc0; ADCQ src_len+56(FP), acc1; ADCQ $1, acc2
    	polyMul
    
    	// Final reduce
    	MOVQ    acc0, t0
    	MOVQ    acc1, t1
    	MOVQ    acc2, t2
    	SUBQ    $-5, acc0
    	SBBQ    $-1, acc1
    	SBBQ    $3, acc2
    	CMOVQCS t0, acc0
    	CMOVQCS t1, acc1
    	CMOVQCS t2, acc2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    				}
    				if target.Is386() {
    					nExtReloc++ // need two ELF relocations on 386, see ../x86/asm.go:elfreloc1
    				}
    				break
    			}
    			if target.IsPIE() && target.IsElf() {
    				// We are linking the final executable, so we
    				// can optimize any TLS IE relocation to LE.
    				if thearch.TLSIEtoLE == nil {
    					log.Fatalf("internal linking of TLS IE not supported on %v", target.Arch.Family)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  6. CHANGELOG/CHANGELOG-1.4.md

    ## Changelog since v1.4.6
    
    ### Other notable changes
    
    * Exit with error if <version number or publication> is not the final parameter. ([#37723](https://github.com/kubernetes/kubernetes/pull/37723), [@mtaufen](https://github.com/mtaufen))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  7. pkg/apis/apps/validation/validation_test.go

    		update: mkStatefulSet(&validPodTemplate, tweakMinReadySeconds(10)),
    	}, {
    		name:   "update existing instance with now-invalid name",
    		old:    mkStatefulSet(&validPodTemplate, tweakFinalizers("final")),
    		update: mkStatefulSet(&validPodTemplate, tweakFinalizers()),
    	}, {
    		name:   "update existing instance with .spec.ordinals.start",
    		old:    mkStatefulSet(&validPodTemplate),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.cc

    namespace {
    
    #if !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD)
    
    // Creates a placeholder representing an input to the cond or body graph.
    // TODO(skyewm): remove these from final graph
    bool CreateInput(const TF_Output& parent_input, TF_Graph* g, const char* name,
                     TF_Output* input, TF_Status* status) {
      TF_OperationDescription* desc = TF_NewOperation(g, "Placeholder", name);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. cmd/admin-handlers.go

    			disks: diskMap,
    			jobID: jobID,
    			depID: dID,
    		})
    		cancel()
    		m.Merge(&mRemote)
    		if !byHost {
    			m.ByHost = nil
    		}
    		if !byDisk {
    			m.ByDisk = nil
    		}
    
    		m.Final = n <= 1
    
    		// Marshal API reesponse
    		if err := enc.Encode(&m); err != nil {
    			n = 0
    		}
    
    		n--
    		if n <= 0 {
    			break
    		}
    
    		// Flush before waiting for next...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    					}
    					continue
    				}
    			}
    
    			// Prefixed instructions cannot be placed across a 64B boundary.
    			// Mark and adjust the PC of those which do. A nop will be
    			// inserted during final assembly.
    			if o.ispfx {
    				mark := p.Mark &^ PFX_X64B
    				if pc&63 == 60 {
    					p.Pc += 4
    					m += 4
    					mark |= PFX_X64B
    				}
    
    				// Marks may be adjusted if a too-far conditional branch is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top