Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 79 of 79 for iterations (0.19 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    	op_PC      uint32 = 0xB218 // FORMAT_S          PROGRAM CALL
    	op_PCC     uint32 = 0xB92C // FORMAT_RRE        PERFORM CRYPTOGRAPHIC COMPUTATION
    	op_PCKMO   uint32 = 0xB928 // FORMAT_RRE        PERFORM CRYPTOGRAPHIC KEY MGMT. OPERATIONS
    	op_PFD     uint32 = 0xE336 // FORMAT_RXY2       PREFETCH DATA
    	op_PFDRL   uint32 = 0xC602 // FORMAT_RIL3       PREFETCH DATA RELATIVE LONG
    	op_PFMF    uint32 = 0xB9AF // FORMAT_RRE        PERFORM FRAME MANAGEMENT FUNCTION
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    				resetAddress(ctxt, s)
    			}
    		}
    		va = start
    
    		ntramps := 0
    		var curPkg string
    		for i, s := range ctxt.Textp {
    			// When we find the first symbol in a package, perform a
    			// single iteration that assigns temporary addresses to all
    			// of the text in the same package, using the maximum possible
    			// number of trampolines. This allows for better decisions to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    				Mode:           networking.ServerTLSSettings_SIMPLE,
    				CredentialName: "sds-name",
    				CipherSuites:   []string{"ECDHE-ECDSA-AES128-SHA"},
    			},
    			"", "",
    		},
    		{
    			"cipher suites operations",
    			&networking.ServerTLSSettings{
    				Mode:           networking.ServerTLSSettings_SIMPLE,
    				CredentialName: "sds-name",
    				CipherSuites:   []string{"-ECDHE-ECDSA-AES128-SHA"},
    			},
    			"", "",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    					found = true
    					break
    				}
    			}
    			if !found {
    				t.Errorf("expect operation interrupted err but did not find")
    			}
    		})
    	}
    }
    
    // This is the most recursive operations we expect to be able to include in an expression.
    // This number could get larger with more improvements in the grammar or ANTLR stack, but should *never* decrease or previously valid expressions could be treated as invalid.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        // CHECK: tensor<1x1x1x1xf32>
        func.return %0 : tensor<*xf32>
      }
    
      // Verifies handling of cases involving multiple iteration of feeding inputs.
      // CHECK-LABEL: @const_input_required
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    				<-pre.sema
    				if bp != nil && loaded && err == nil && !opts.IgnoreImports {
    					pre.preloadImports(ctx, opts, bp.Imports, bp)
    				}
    			}(path)
    		}
    	}
    }
    
    // flush stops pending preload operations. flush blocks until preload calls to
    // loadPackageData have completed. The preloader will not make any new calls
    // to loadPackageData.
    func (pre *preload) flush() {
    	// flush is usually deferred.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/net/http/server.go

    }
    
    // The CloseNotifier interface is implemented by ResponseWriters which
    // allow detecting when the underlying connection has gone away.
    //
    // This mechanism can be used to cancel long operations on the server
    // if the client has disconnected before the response is ready.
    //
    // Deprecated: the CloseNotifier interface predates Go's context package.
    // New code should use [Request.Context] instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

          tf_device.return
        }) : () -> ()
        func.return
      }
      func.func @empty_func() {
        func.return
      }
    }
    
    // -----
    
    // Tests that TPUCompilationResult operations are properly rewritten.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    	}
    
    	c.Lock()
    	defer c.Unlock()
    	c.state = srState{}
    	c.enabled = false
    	return nil
    }
    
    const (
    	// Access key of service account used for perform cluster-replication
    	// operations.
    	siteReplicatorSvcAcc = "site-replicator-0"
    )
    
    // PeerSiteInfo is a wrapper struct around madmin.PeerSite with extra info on site status
    type PeerSiteInfo struct {
    	madmin.PeerSite
    	self         bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top