Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 112 for TestTd (0.22 sec)

  1. guava/src/com/google/common/collect/ImmutableSortedMap.java

        throw new InvalidObjectException("Use SerializedForm");
      }
    
      // This class is never actually serialized directly, but we have to make the
      // warning go away (and suppressing would suppress for all nested classes too)
      private static final long serialVersionUID = 0;
    
      /**
       * Not supported. Use {@link #toImmutableSortedMap}, which offers better type-safety, instead.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  2. .bazelrc

    #     rbe_linux_cuda:                 RBE options to build with GPU support using clang.
    #     rbe_linux_cuda_nvcc:            RBE options to build with GPU support using nvcc.
    #
    # Embedded Linux options (experimental and only tested with TFLite build yet)
    #     elinux:          General Embedded Linux options shared by all flavors.
    #     elinux_aarch64:  Embedded Linux options for aarch64 (ARM64) CPU support.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_function_test.cc

        v.push_back(IOSpec(name, DT_INVALID));
      }
      return v;
    }
    
    // Specification for an expected edge.
    // src is either:
    // - input name (as it appears in FunctionDef)
    // - name of output tensor (in nested "add:z:0" format)
    // dst is either:
    // - output name (as it appears in FunctionDef)
    // - <name_of_node>:<index_of_this_input_into_node> (this looks the same as
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		// HTTP/2 stream close; the latter is done if either the connection has been "hijacked" or some
    		// other goroutine (e.g., the one running the inner handler) has started to write a response.
    		// In the scenario tested here, there is thus a race between two goroutines to respond to
    		// the second request and any of their responses is allowed by the test.
    		firstReqResultCh, secondReqResultCh := make(chan result, 1), make(chan result, 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. src/regexp/testdata/testregex.c

    				case 'A':
    					test |= TEST_ARE;
    					continue;
    				case 'B':
    					test |= TEST_BRE;
    					continue;
    				case 'C':
    					if (!(test & TEST_QUERY) && !(skip & level))
    						bad("locale must be nested\n", NiL, NiL, 0, 0);
    					test &= ~TEST_QUERY;
    					if (locale)
    						bad("locale nesting not supported\n", NiL, NiL, 0, 0);
    					if (i != 2)
    						bad("locale field expected\n", NiL, NiL, 0, 0);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

                node)
        return cst_name, cst_ty
    
      def visit_FunctionDef(self, node):
        op_def, derived_attrs = self._op_defs.lookup(node.name, node, True)
        if op_def is None:
          # Nested function. Insert it to symbol table for looking up later.
          self.symbol_table.insert_symbol(node.name, node, None)
          return
        op_name = op_def.name
        if self.symbol_table.lookup(op_name):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package nftables
    
    //
    // NOTE: this needs to be tested in e2e since it uses nftables for everything.
    //
    
    import (
    	"context"
    	"crypto/sha256"
    	"encoding/base32"
    	"fmt"
    	"net"
    	"reflect"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    			continue
    		}
    		q, err = ParseQuantity(item.alternate)
    		if err != nil {
    			t.Errorf("%#v: unexpected error: %v", item.expect, err)
    			continue
    		}
    		if len(q.s) != 0 {
    			t.Errorf("%#v: unexpected nested string: %v", item.expect, q.s)
    		}
    		if q.String() != item.expect {
    			t.Errorf("%#v: unexpected alternate canonical: %v", item.expect, q.String())
    		}
    		if len(q.s) == 0 || q.s != item.expect {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_test.go

    	}
    }
    
    func TestInstantiateConcurrent(t *testing.T) {
    	const src = `package p
    
    type I[P any] interface {
    	m(P)
    	n() P
    }
    
    type J = I[int]
    
    type Nested[P any] *interface{b(P)}
    
    type K = Nested[string]
    `
    	pkg := mustTypecheck(src, nil, nil)
    
    	insts := []*Interface{
    		pkg.Scope().Lookup("J").Type().Underlying().(*Interface),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  10. cmd/kubelet/app/server.go

    		}
    		reservedSystemCPUs, err := getReservedCPUs(machineInfo, s.ReservedSystemCPUs)
    		if err != nil {
    			return err
    		}
    		if reservedSystemCPUs.Size() > 0 {
    			// at cmd option validation phase it is tested either --system-reserved-cgroup or --kube-reserved-cgroup is specified, so overwrite should be ok
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top