Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for baseClass (0.3 seconds)

  1. android/guava-testlib/src/com/google/common/collect/testing/features/FeatureUtil.java

        TesterRequirements declaredRequirements = buildDeclaredTesterRequirements(testerClass);
        Class<?> baseClass = testerClass.getSuperclass();
        if (baseClass == null) {
          return declaredRequirements;
        } else {
          TesterRequirements clonedBaseRequirements =
              new TesterRequirements(getTesterRequirements(baseClass));
          return incorporateRequirements(clonedBaseRequirements, declaredRequirements, testerClass);
        }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Dec 21 14:50:24 GMT 2024
    - 12.4K bytes
    - Click Count (0)
  2. guava-testlib/src/com/google/common/collect/testing/features/FeatureUtil.java

        TesterRequirements declaredRequirements = buildDeclaredTesterRequirements(testerClass);
        Class<?> baseClass = testerClass.getSuperclass();
        if (baseClass == null) {
          return declaredRequirements;
        } else {
          TesterRequirements clonedBaseRequirements =
              new TesterRequirements(getTesterRequirements(baseClass));
          return incorporateRequirements(clonedBaseRequirements, declaredRequirements, testerClass);
        }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Dec 21 14:50:24 GMT 2024
    - 12.4K bytes
    - Click Count (0)
  3. internal/grid/muxserver.go

    		LastPing:           time.Now().Unix(),
    		BaseFlags:          c.baseFlags,
    		clientPingInterval: c.clientPingInterval,
    	}
    	// Acknowledge Mux created.
    	// Send async.
    	var wg sync.WaitGroup
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		var ack message
    		ack.Op = OpAckMux
    		ack.Flags = m.BaseFlags
    		ack.MuxID = m.ID
    		m.send(ack)
    		if debugPrint {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue May 27 15:19:03 GMT 2025
    - 9.7K bytes
    - Click Count (0)
  4. internal/grid/muxclient.go

    	return &muxClient{
    		MuxID:              muxID,
    		ctx:                ctx,
    		cancelFn:           cancelFn,
    		parent:             parent,
    		LastPong:           time.Now().UnixNano(),
    		BaseFlags:          parent.baseFlags,
    		clientPingInterval: parent.clientPingInterval,
    	}
    }
    
    // roundtrip performs a roundtrip, returning the first response.
    // This cannot be used concurrently.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 15.9K bytes
    - Click Count (0)
  5. RELEASE.md

            of words which may include previously unseen words (the embedding
            vectors for unseen words will be randomly initialized).
    
    *   `tf.Variable`:
    
        *   Added `CompositeTensor` as a baseclass to `ResourceVariable`. This
            allows `tf.Variable`s to be nested in `tf.experimental.ExtensionType`s.
        *   Added a new constructor argument `experimental_enable_variable_lifting`
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Mar 30 18:31:38 GMT 2026
    - 746.5K bytes
    - Click Count (3)
  6. internal/grid/connection.go

    			o.incomingBytes(n)
    		}
    		c.inBytes.Add(n)
    	}
    	if !strings.HasPrefix(o.remote, "https://") && !strings.HasPrefix(o.remote, "wss://") {
    		c.baseFlags |= FlagCRCxxh3
    	}
    	if !strings.HasPrefix(o.local, "https://") && !strings.HasPrefix(o.local, "wss://") {
    		c.baseFlags |= FlagCRCxxh3
    	}
    	if o.publisher != nil {
    		c.traceRequests(o.publisher)
    	}
    	if o.local == o.remote {
    		panic("equal hosts")
    	}
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 46.9K bytes
    - Click Count (0)
Back to Top