Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 564 for turning (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/decompose_reduce_dataset.cc

                                     reduce_dataset.getInputDataset(),
                                     anonymous_iterator.getResult());
      return anonymous_iterator;
    }
    
    // Create a WhileRegionOp turning `reduce_dataset` into a dataset iteration with
    // reduce_fn call.
    WhileRegionOp CreateDatasetWhile(OpBuilder builder,
                                     ReduceDatasetOp reduce_dataset) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. tests/integration/security/file_mounted_certs/main_test.go

          # deployed test services changes on each run due to a randomly generated namespace suffixes.
          # Turning the XDS-Auth ON will result in the error messages like:
          # Unauthorized XDS: 10.1.0.159:41960 with identity [spiffe://cluster.local/ns/mounted-certs/sa/client client.mounted-certs.svc]:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. src/runtime/sema.go

    		}
    		tailtime = s.acquiretime
    	}
    	s.parent = nil
    	s.elem = nil
    	s.next = nil
    	s.prev = nil
    	s.ticket = 0
    	return s, now, tailtime
    }
    
    // rotateLeft rotates the tree rooted at node x.
    // turning (x a (y b c)) into (y (x a b) c).
    func (root *semaRoot) rotateLeft(x *sudog) {
    	// p -> (x a (y b c))
    	p := x.parent
    	y := x.next
    	b := y.prev
    
    	y.prev = x
    	x.parent = y
    	x.next = b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. maven-core/src/site/apt/offline-mode.apt

      a result turning off certain services provided by m2 and providing a coherent
      way of predicting and reporting when network-related failures will take place.
      It means warning users that since the network is missing, certain features and
      operations will be unavailable, rather than simply waiting for those
      operations to fail, then trying to help users decipher the error messages they
      get as a result.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    // Specifically, type declarations are discarded;
    // all names in each var and const declaration are blanked out;
    // each method is turned into a regular function by turning
    // the receiver into the first parameter;
    // and all functions are renamed to "_".
    //
    //	package p
    //	import . "·this·" // declares T, k, x, y, f, g, T.f
    //	import "C"
    //	import "fmt"
    //	const _ = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/endtoend_test.go

    	"sort"
    	"strconv"
    	"strings"
    	"testing"
    
    	"cmd/asm/internal/lex"
    	"cmd/internal/obj"
    )
    
    // An end-to-end test for the assembler: Do we print what we parse?
    // Output is generated by, in effect, turning on -S and comparing the
    // result against a golden file.
    
    func testEndToEnd(t *testing.T, goarch, file string) {
    	input := filepath.Join("testdata", file+".s")
    	architecture, ctxt := setArch(goarch)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 18:42:59 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  7. src/net/http/httputil/dump_test.go

    				"\r\nkey1=name1&key2=name2")
    		},
    		WantDump: "POST /v2/api/?login HTTP/1.1\r\n" +
    			"Host: passport.myhost.com\r\n\r\n",
    	},
    
    	// Issue 18506: make drainBody recognize NoBody. Otherwise
    	// this was turning into a chunked request.
    	{
    		Req: mustNewRequest("POST", "http://example.com/foo", http.NoBody),
    		WantDumpOut: "POST /foo HTTP/1.1\r\n" +
    			"Host: example.com\r\n" +
    			"User-Agent: Go-http-client/1.1\r\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:34:07 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  8. maven-core/plugin-manager.txt

    h4. Working with POMs during development
    
    During the development of a plugin we would want to make it easy for a developer to create a plugin which means we would allow the direct use of a POM to state the dependencies of a given plugin and any tooling we created would be responsible for turning the dependency information in the POM into plugin metadata which described the dependencies of the plugin.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  9. src/html/template/js.go

    		//     semantics
    		//
    		// We also put a space before the comment so that if it is flush against
    		// a division operator it is not turned into a line comment:
    		//     x/{{y}}
    		// turning into
    		//     x//* error marshaling y:
    		//          second line of error message */null
    		errStr := err.Error()
    		errStr = strings.ReplaceAll(errStr, "*/", "* /")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. guava-gwt/pom.xml

                  [INFO]    Ignored 53 units with compilation errors in first pass.
                  [INFO] Compile with -strict or with -logLevel set to TRACE or DEBUG to see all errors.
    
                Turning up the log level, we see that GWT is trying to compile classes from other
                packages, like RangeTest. The reason for this is that GWT doesn't distinguish between
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top