Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 112 for TestTd (0.13 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      SymbolTable symbol_table(module_for_func.get());
    
      symbol_table.insert(func);
      *serialized_func_module =
          tensorflow::SerializeMlirModule(module_for_func.get());
    }
    
    // Returns whether `op` or ops nested in `op` are outside compiled.
    bool HasOutsideCompilationNested(Operation* op) {
      return op
          ->walk([&](Operation* walked_op) {
            if (op == walked_op) return WalkResult::advance();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "boolean"
            },
            "x-kubernetes-validations": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  3. src/reflect/type.go

    	// Field returns a struct type's i'th field.
    	// It panics if the type's Kind is not Struct.
    	// It panics if i is not in the range [0, NumField()).
    	Field(i int) StructField
    
    	// FieldByIndex returns the nested field corresponding
    	// to the index sequence. It is equivalent to calling Field
    	// successively for each index i.
    	// It panics if the type's Kind is not Struct.
    	FieldByIndex(index []int) StructField
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  4. android/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: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. src/go/types/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: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/merge_control_flow.mlir

          "tf.Yield"() : () -> ()
         }) {is_stateless = false} : (tensor<i1>) -> ()
        tf_device.return
      }) {cluster_attr = "cluster_attr"} : () -> ()
      func.return
    }
    
    // Check that IfRegion groups with nested IfRegion with the same predicate are
    // merged at the same block level. There are no dependencies between IfRegions.
    
    // CHECK-LABEL: func @nested_IfRegions_with_same_predicate_same_block_level_merged
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 63.7K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    		env = append(env, "CGO_ENABLED=0")
    	}
    	if isRelease || os.Getenv("GO_BUILDER_NAME") != "" {
    		// Add -trimpath for reproducible builds of releases.
    		// Include builders so that -trimpath is well-tested ahead of releases.
    		// Do not include local development, so that people working in the
    		// main branch for day-to-day work on the Go toolchain itself can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/go/printer/testdata/parser.go

    		colon := p.pos
    		p.next()
    		if label, isIdent := x[0].(*ast.Ident); labelOk && isIdent {
    			// Go spec: The scope of a label is the body of the function
    			// in which it is declared and excludes the body of any nested
    			// function.
    			stmt := &ast.LabeledStmt{label, colon, p.parseStmt()}
    			p.declare(stmt, p.labelScope, ast.Lbl, label)
    			return stmt
    		}
    		p.error(x[0].Pos(), "illegal label declaration")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    		}
    
    		if err := srv.CloseWrite(); err != nil {
    			return fmt.Errorf("server CloseWrite: %v", err)
    		}
    
    		// Wait for clientCloseWrite to finish, so we know we
    		// tested the CloseWrite before we defer the
    		// sconn.Close above, which would also cause the
    		// client to unblock like CloseWrite.
    		<-clientDoneChan
    		return nil
    	}
    
    	clientCloseWrite := func() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. src/syscall/syscall_windows.go

    	a, err := UTF16FromString(s)
    	if err != nil {
    		return nil, err
    	}
    	return &a[0], nil
    }
    
    // Errno is the Windows error number.
    //
    // Errno values can be tested against error values using [errors.Is].
    // For example:
    //
    //	_, _, err := syscall.Syscall(...)
    //	if errors.Is(err, fs.ErrNotExist) ...
    type Errno uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
Back to top