Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for representing (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    * `outputDir`
    +
    The directory where the generated files go. As with input files, there are several annotations for output files and directories. A property representing a single directory requires `@OutputDirectory`. You’ll learn about the others soon.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

        New-NetRoute `
            -ErrorAction Ignore `
            -DestinationPrefix "${GCE_METADATA_SERVER}/32" `
            -InterfaceIndex ${adapter_index} | Out-Null
      }
    }
    
    # Returns a PowerShell object representing the Windows version.
    function Get_WindowsVersion {
      # Unlike checking `[System.Environment]::OSVersion.Version`, this long-winded
      # approach gets the OS revision/patch number correctly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // We disallow copying Tests.
      GTEST_DISALLOW_COPY_AND_ASSIGN_(Test);
    };
    
    typedef internal::TimeInMillis TimeInMillis;
    
    // A copyable object representing a user specified test property which can be
    // output as a key/value string pair.
    //
    // Don't inherit from TestProperty as its destructor is not virtual.
    class TestProperty {
     public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (F(CMP|CMPS) x (FMOV(D|S)const [0.0])) => (LT(D|E)BR x)
    (F(CMP|CMPS) (FMOV(D|S)const [0.0]) x) => (InvertFlags (LT(D|E)BR <v.Type> x))
    
    // FSUB, FSUBS, FADD, FADDS now produce a condition code representing the
    // comparison of the result with 0.0. If a compare with zero instruction
    // (e.g. LTDBR) is following one of those instructions, we can use the
    // generated flag and remove the comparison instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    // and heapmap(i) == span for all s->start <= i < s->start+s->npages.
    
    // Every mspan is in one doubly-linked list, either in the mheap's
    // busy list or one of the mcentral's span lists.
    
    // An mspan representing actual memory has state mSpanInUse,
    // mSpanManual, or mSpanFree. Transitions between these states are
    // constrained as follows:
    //
    //   - A span may transition from free to in-use or manual during any GC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	}
    
    	a, err := ToAST(name, options...)
    	if err != nil {
    		return "", err
    	}
    	return ASTToString(a, options...), nil
    }
    
    // ToAST demangles a C++ symbol name into an abstract syntax tree
    // representing the symbol.
    // If the NoParams option is passed, and the name has a function type,
    // the parameter types are not demangled.
    // If the name does not appear to be a C++ symbol name at all, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    The list is converted to a single large tensor that includes all list elements,
    with a new first dimension for the list index. List update operations are
    converted to operations that create a new tensor representing the list.
    
    In the current implementation, the resulting operations are statically shaped,
    which means it must be possible to infer a bound on the full shape of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top