Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for splay_ (0.16 sec)

  1. internal/grid/grid_test.go

    			os.Exit(2)
    		}
    	}()
    	return func() {
    		close(cc)
    	}
    }
    
    func assertNoActive(t *testing.T, c *Connection) {
    	t.Helper()
    	// Tiny bit racy for tests, but we try to play nice.
    	for i := 10; i >= 0; i-- {
    		runtime.Gosched()
    		stats := c.Stats()
    		if stats.IncomingStreams != 0 {
    			if i > 0 {
    				time.Sleep(100 * time.Millisecond)
    				continue
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    // request gets queued then this function uses the given hashValue as
    // the source of entropy as it shuffle-shards the request into a
    // queue.  The descr1 and descr2 values play no role in the logic but
    // appear in log messages.  This method does not return until the
    // queuing, if any, for this request is done.  If `execute` is false
    // then `afterExecution` is irrelevant and the request should be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        auto value_ty = value_attr.getType();
        if (!value_ty.hasRank() || value_ty.getRank() != expected_rank)
          return std::nullopt;
    
        auto splat = value_attr.getSplatValue<IntegerAttr>();
        return splat.getValue().getSExtValue();
      };
    
      // All other packed values are scalar constants.
      SmallVector<int64_t, 4> packed_dims;
      packed_dims.reserve(getValues().size() - 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/test.go

    int check_cbytes(char *b, size_t l) {
    	int i;
    	for (i = 0; i < l; i++) {
    		if (b[i] != i) {
    			return 0;
    		}
    	}
    	return 1;
    }
    
    // issue 17065
    // Test that C symbols larger than a page play nicely with the race detector.
    int ii[65537];
    
    // issue 17537
    // The void* cast introduced by cgo to avoid problems
    // with const/volatile qualifiers breaks C preprocessor macros that
    // emulate functions.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  5. src/math/big/float.go

    // roundTowardNegative; under that attribute, the sign of an exact zero
    // sum (or difference) shall be −0. However, x+x = x−(−x) retains the same
    // sign as x even when x is zero.
    //
    // See also: https://play.golang.org/p/RtH3UCt5IH
    
    // Add sets z to the rounded sum x+y and returns z. If z's precision is 0,
    // it is changed to the larger of x's or y's precision before the operation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

              <type>String</type>
            </field>
            <field>
              <name>roles</name>
              <version>3.0.0+</version>
              <description>
                The roles the contributor plays in the project. Each role is described by a
                {@code role} element, the body of which is a role name. This can also be used to
                describe the contribution.
              </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    }
    
    func (n *New) GoString() string {
    	return n.goString(0, "")
    }
    
    func (n *New) goString(indent int, field string) string {
    	var place string
    	if n.Place == nil {
    		place = fmt.Sprintf("%*sPlace: nil", indent, "")
    	} else {
    		place = n.Place.goString(indent+2, "Place: ")
    	}
    	var ini string
    	if n.Init == nil {
    		ini = fmt.Sprintf("%*sInit: nil", indent, "")
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // are counted for the average of this window, not padded entries.
    
        // Build all-ones tensor of same shape as the original input.
        ElementsAttr splat = hlo::getSplat(&rewriter, orig_input_type, 1);
        auto all_ones_tensor = rewriter.create<ConstantOp>(loc, splat);
    
        // Get padding for the input.
        DenseIntElementsAttr input_padding_attr =
            GetReduceWindowPaddingAsAttr<num_dims>(input_shape, op.getKsize(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    // changed during the symtab() phase so as to insure that similar symbols
    // are bucketed together, then their types are changed back again during
    // dodata. Symbol to section assignment also plays tricks along these lines
    // in the case where a relro segment is needed.
    //
    // The value returned from setType() below reflects the effects of
    // any overrides made by symtab and/or dodata.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    	if sched.safePointWait == 0 {
    		notewakeup(&sched.safePointNote)
    	}
    	unlock(&sched.lock)
    }
    
    // When running with cgo, we call _cgo_thread_start
    // to start threads for us so that we can play nicely with
    // foreign code.
    var cgoThreadStart unsafe.Pointer
    
    type cgothreadstart struct {
    	g   guintptr
    	tls *uint64
    	fn  unsafe.Pointer
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top