Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 188 for lost (0.06 sec)

  1. src/runtime/proc.go

    	extraMInUse atomic.Uint32
    )
    
    // lockextra locks the extra list and returns the list head.
    // The caller must unlock the list by storing a new list head
    // to extram. If nilokay is true, then lockextra will
    // return a nil list head if that's what it finds. If nilokay is false,
    // lockextra will keep waiting until the list head is no longer nil.
    //
    //go:nosplit
    func lockextra(nilokay bool) *m {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    			c.n++
    			x.last = x.last[:i+1]
    			return true
    		}
    	}
    	return false
    }
    
    func (x *exhaustive) Choose(max int) int {
    	if x.pos >= len(x.last) {
    		x.last = append(x.last, choice{x.r.Intn(max), 0, max})
    	}
    	c := &x.last[x.pos]
    	x.pos++
    	if c.max != max {
    		panic("inconsistent use of exhaustive tester")
    	}
    	return (c.n + c.off) % max
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    foot!
    
      She was a good deal frightened by this very sudden change, but
    she felt that there was no time to be lost, as she was shrinking
    rapidly; so she set to work at once to eat some of the other bit.
    Her chin was pressed so closely against her foot, that there was
    hardly room to open her mouth; but she did it at last, and
    managed to swallow a morsel of the lefthand bit.
    
    
         *       *       *       *       *       *       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

    func.func @testConcatCwiseBinaryInvalidInnerDim(%arg0: tensor<?x2xf32>,
      %arg1: tensor<?x2xf32>, %arg2: tensor<f32>, %arg3: tensor<f32>) -> tensor<?x4xf32> {
      // Each individual binary operation has an implicit broadcast that will be
      // lost if we would reorder them with the concat.
    
      // CHECK: %[[CONST:.*]] = "tf.Const"()
      // CHECK-DAG: %[[MUL1:.*]] = "tf.Mul"(%arg0, %arg2)
      // CHECK-DAG: %[[MUL2:.*]] = "tf.Mul"(%arg1, %arg3)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    foot!
    
      She was a good deal frightened by this very sudden change, but
    she felt that there was no time to be lost, as she was shrinking
    rapidly; so she set to work at once to eat some of the other bit.
    Her chin was pressed so closely against her foot, that there was
    hardly room to open her mouth; but she did it at last, and
    managed to swallow a morsel of the lefthand bit.
    
    
         *       *       *       *       *       *       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    which Vapours begin to reflect, it ought to be the Colour of the finest and most transparent Skies, in which Vapours are not arrived to that Grossness requisite to reflect other Colours, as we find it is by Experience. _Whiteness_, if most intense and luminous, is that of the first Order, if less strong and luminous, a Mixture of the Colours of several Orders. Of this last kind is the Whiteness of Froth, Paper, Linnen, and most white Substances; of the former I reckon that of white Metals to be. For...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    	}, nil
    }
    
    // ensureHostsFile ensures that the given host file has an up-to-date ip, host
    // name, and domain name.
    func ensureHostsFile(fileName string, hostIPs []string, hostName, hostDomainName string, hostAliases []v1.HostAlias, useHostNetwork bool) error {
    	var hostsFileContent []byte
    	var err error
    
    	if useHostNetwork {
    		// if Pod is using host network, read hosts file from the node's filesystem.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

    together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  9. src/database/sql/sql.go

    	// For tests.
    	drivers = make(map[string]driver.Driver)
    }
    
    // Drivers returns a sorted list of the names of the registered drivers.
    func Drivers() []string {
    	driversMu.RLock()
    	defer driversMu.RUnlock()
    	list := make([]string, 0, len(drivers))
    	for name := range drivers {
    		list = append(list, name)
    	}
    	slices.Sort(list)
    	return list
    }
    
    // A NamedArg is a named argument. NamedArg values may be used as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

    together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
Back to top