Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 731 for expand1 (0.12 sec)

  1. src/cmd/go/testdata/script/build_acl_windows.txt

    go build -o $TMP\main.exe main.go
    
    # Read ACLs for the files.
    exec powershell -Command 'Get-Acl main.exe | Select -expand AccessToString'
    cp stdout $WORK\exe-acl.txt
    exec powershell -Command 'Get-Acl main.go | Select -expand AccessToString'
    cp stdout $WORK\src-acl.txt
    cd $TMP
    exec powershell -Command 'Get-Acl main.exe | Select -expand AccessToString'
    cp stdout $WORK\guest-acl.txt
    
    cd $WORK
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. src/os/env.go

    // General environment variables.
    
    package os
    
    import (
    	"internal/testlog"
    	"syscall"
    )
    
    // Expand replaces ${var} or $var in the string based on the mapping function.
    // For example, [os.ExpandEnv](s) is equivalent to [os.Expand](s, [os.Getenv]).
    func Expand(s string, mapping func(string) string) string {
    	var buf []byte
    	// ${} is all ASCII, so bytes are fine for this operation.
    	i := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/SrcDistributionIntegrationSpec.groovy

            then:
            File binZip = contentsDir.file("subprojects/distributions-full/build/distributions").listFiles().find() { it.name.endsWith("-bin.zip") }
            binZip.exists()
    
            when:
            Expand unpack = new Expand()
            unpack.src = binZip
            unpack.dest = contentsDir.file('build/distributions/unzip')
            AntUtil.execute(unpack)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopySpecEncodingIntegrationSpec.groovy

            file('files/accents.c').write('éàüî $one', 'ISO-8859-1')
            buildScript """
                task (copy, type: Copy) {
                    from 'files'
                    into 'dest'
                    expand(one: 1)
                }
            """.stripIndent()
            executer.beforeExecute { it.withDefaultCharacterEncoding('ISO-8859-1') }
    
            when:
            run 'copy'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:45:30 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/dilated-conv.mlir

      // CHECK-NEXT: [[AXIS:%.*]] = "tf.Const"() <{value = dense<3> : tensor<i32>}> : () -> tensor<i32>
      // CHECK-NEXT: [[EXPAND:%.*]] = "tf.ExpandDims"([[INPUT]], [[AXIS]]) : (tensor<1x128x128xf32>, tensor<i32>) -> tensor<1x128x128x1xf32>
      // CHECK-NEXT: [[CONV:%.*]] = "tf.Conv2D"([[EXPAND]], [[FILTER]]) <{dilations = [1, 2, 2, 1], padding = "SAME", strides = [1, 1, 1, 1]}> : (tensor<1x128x128x1xf32>, tensor<5x5x1x1xf32>) -> tensor<1x128x128x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/ZipFileTreeTest.java

            try {
                getTree().visit(new EmptyFileVisitor());
                fail();
            } catch (InvalidUserDataException e) {
                assertThat(e.getMessage(), equalTo("Cannot expand ZIP '" + archiveFile + "' as it does not exist."));
            }
        }
    
        @Test
        public void failsWhenArchiveFileIsADirectory() {
            getArchiveFile().createDir();
    
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/ConditionalExecutionQueue.java

         */
        void submit(ConditionalExecution<T> execution);
    
        /**
         * Expand the execution queue worker pool.  This should be called before an execution in the queue is blocked waiting
         * on another execution (e.g. work that submits and waits on other work).
         */
        void expand();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/orig/view/advance.jsp

    </head>
    <body>
    	<la:form styleClass="form-stacked" action="/search/" method="get" styleId="searchForm">
    		${fe:facetForm()}${fe:geoForm()}
    		<header>
    			<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
    				<div class="container">
    					<la:link styleClass="navbar-brand d-inline-flex" href="/">
    						<img src="${fe:url('/images/logo-head.png')}"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/Striped64.java

              try {
                if (cells == as) { // Expand table unless stale
                  Cell[] rs = new Cell[n << 1];
                  for (int i = 0; i < n; ++i) rs[i] = as[i];
                  cells = rs;
                }
              } finally {
                busy = 0;
              }
              collide = false;
              continue; // Retry with expanded table
            }
            h ^= h << 13; // Rehash
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. src/main/webapp/css/bootstrap.min.css

    ze:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{posi...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Dec 25 08:05:52 UTC 2019
    - 155.8K bytes
    - Viewed (0)
Back to top