Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,372 for below (0.07 sec)

  1. src/internal/fuzz/mutator.go

    			}
    			v += int64(1 + m.rand(int(max)))
    			return v
    		case 1:
    			// Subtract a random number
    			if v <= -maxValue {
    				continue
    			}
    			if v < 0 && maxValue+v < max {
    				// Don't let v drop below -maxValue
    				max = maxValue + v
    			}
    			v -= int64(1 + m.rand(int(max)))
    			return v
    		}
    	}
    }
    
    func (m *mutator) mutateUInt(v, maxValue uint64) uint64 {
    	var max uint64
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. releasenotes/notes/manifest-base-cleanup.yaml

          In this release, the duplicated configurations are fully removed from the `base` chart.
    
          Below shows a mapping of old configuration to new configuration:
    
          | Old                                     | New                                     |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 04:26:43 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. pkg/kubelet/nodestatus/setters.go

    			// copied to the slice. So if we append to the slice here none of the
    			// updates we make below are reflected in the slice.
    			newCondition = true
    		}
    
    		// Update the heartbeat time
    		condition.LastHeartbeatTime = currentTime
    
    		// Note: The conditions below take care of the case when a new NodeMemoryPressure condition is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tfrt_ops.mlir

      func.return
    }
    
    // -----
    func.func @test_ifrt_call_fail_unsorted_variable_arg_indices(%arg0: tensor<?xf32>, %arg1: tensor<?xf32>) {
      // expected-error@below {{variable_arg_indices must be sorted in ascending order}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 06:13:11 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/settings/DefaultMavenSettingsBuilder.java

            // -------------------------------------------------------------------------------------
            // Alright, here's the justification for all the regexp wizardry below...
            //
            // Continuum and other server-like apps may need to locate the user-level and
            // global-level settings somewhere other than ${user.home} and ${maven.home},
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. cmd/update_nofips.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    // Newer official download info URLs appear earlier below.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 931 bytes
    - Viewed (0)
  7. src/html/template/doc.go

    actions can appear within JavaScript, CSS, and URI contexts.
    
    The security model used by this package assumes that template authors are
    trusted, while Execute's data parameter is not. More details are
    provided below.
    
    Example
    
    	import "text/template"
    	...
    	t, err := template.New("foo").Parse(`{{define "T"}}Hello, {{.}}!{{end}}`)
    	err = t.ExecuteTemplate(out, "T", "<script>alert('you have been pwned')</script>")
    
    produces
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/cluster_scoping_pass.cc

    // disallows a node being merged with nodes in other scopes, the scope
    // conjunction preserves the semantic of the old scope (i.e., the node still
    // cannot be merged with the previously incompatible nodes.)
    //
    // For example, the below case should be rare in practice but can serve for the
    // purpose of discussion.  After adding scopes for both Stage and Unstage,
    // Node_Y will receive both scopes "unstage" and "stage", while Node_X receives
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/xctest_plugin.adoc

    [[sec:xctest_conventions]]
    == Conventions
    
    The XCTest Plugin adds conventions for sources and tasks, shown below.
    
    [[sec:xctest_layout]]
    === Project layout
    
    The XCTest Plugin assumes the project layout shown below.
    None of these directories needs to exist or have anything in them.
    The XCTest Plugin will compile whatever it finds, and handles anything which is missing.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue51232.go

    	return c.makeFn()
    }
    
    func NewConcrete[RCT RC[RG], RG any](Rc RCT) F /* ERROR "not enough type arguments for type F: have 1, want 2" */ [RCT] {
    	// TODO(rfindley): eliminate the duplicate error below.
    	return & /* ERRORx `cannot use .* as F\[RCT\]` */ concreteF /* ERROR "not enough type arguments for type concreteF: have 1, want 2" */ [RCT]{
    		makeFn: nil,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:50:55 UTC 2023
    - 989 bytes
    - Viewed (0)
Back to top