Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 93 for Canonicalize (0.15 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

        }
    
        List<String> absolutePathsFor(File rootDir, String... relativePaths) {
            // use "new File()" since TestFile canonicalizes the paths.
            return relativePaths.collect { new File(rootDir, it).absolutePath }
        }
    
        @Requires(UnitTestPreconditions.Symlinks)
        def "can snapshot symlinked directories and files within another"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  2. test/codegen/comparisons.go

    		return 1
    	}
    	return 0
    }
    
    // The following CmpToZero_ex* check that cmp|cmn with bmi|bpl are generated for
    // 'comparing to zero' expressions
    
    // var + const
    // 'x-const' might be canonicalized to 'x+(-const)', so we check both
    // CMN and CMP for subtraction expressions to make the pattern robust.
    func CmpToZero_ex1(a int64, e int32) int {
    	// arm64:`CMN`,-`ADD`,`(BMI|BPL)`
    	if a+3 < 0 {
    		return 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

      }
    };
    
    // This pattern converts qint <-> int CastOp to int -> int ConvertOps.
    // The former are introduced in ConvertTFQuantTypes pass. The resulting int <->
    // int ConvertOps are no-ops and can be removed later in a Canonicalizer pass.
    class ConvertTfCastOp : public OpConversionPattern<TF::CastOp> {
     public:
      using OpConversionPattern::OpConversionPattern;
    
      LogicalResult matchAndRewrite(
          TF::CastOp op, TF::CastOpAdaptor adaptor,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

            }
            try {
                return current.getCanonicalFile();
            } catch (IOException e) {
                throw new RuntimeException(String.format("Could not canonicalise '%s'.", current), e);
            }
        }
    
        public TestFile file(Object... path) {
            try {
                return new TestFile(this, path);
            } catch (RuntimeException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. cmd/storage-rest-client.go

    	respBody, err := client.restClient.Call(ctx, method, values, body, length)
    	if err != nil {
    		return nil, toStorageErr(err)
    	}
    	return respBody, nil
    }
    
    // Stringer provides a canonicalized representation of network device.
    func (client *storageRESTClient) String() string {
    	return client.endpoint.String()
    }
    
    // IsOnline - returns whether client failed to connect or not.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. cmd/peer-rest-client.go

    	if err == nil {
    		return respBody, nil
    	}
    
    	if xnet.IsNetworkOrHostDown(err, true) {
    		return nil, errPeerNotReachable
    	}
    
    	return nil, err
    }
    
    // Stringer provides a canonicalized representation of node.
    func (client *peerRESTClient) String() string {
    	return client.host.String()
    }
    
    // IsOnline returns true if the peer client is online.
    func (client *peerRESTClient) IsOnline() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // tf_executor.graph into the same block as the tf_executor.graph.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateExecutorDialectToFunctionalConversionPass();
    
    namespace TF {
    // Creates a pass that canonicalizes legacy compilation and replication
    // attributes.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateCanonicalizeCompileAndReplicateAttributesPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  8. src/net/http/httputil/reverseproxy.go

    var hopHeaders = []string{
    	"Connection",
    	"Proxy-Connection", // non-standard but still sent by libcurl and rejected by e.g. google
    	"Keep-Alive",
    	"Proxy-Authenticate",
    	"Proxy-Authorization",
    	"Te",      // canonicalized version of "TE"
    	"Trailer", // not Trailers per URL above; https://www.rfc-editor.org/errata_search.php?eid=4522
    	"Transfer-Encoding",
    	"Upgrade",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug_test.go

    	if len(excerpts) > 1 {
    		excerpt = excerpts[1]
    	}
    	if len(locations) > 0 {
    		fn := canonFileName(locations[2])
    		if *verbose {
    			if s.file != fn {
    				fmt.Printf("%s\n", locations[2]) // don't canonocalize verbose logging
    			}
    			fmt.Printf("  %s\n", locations[3])
    		}
    		s.line = locations[3]
    		s.file = fn
    		s.function = locations[1]
    		s.ioState.history.add(s.file, s.line, excerpt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. src/crypto/x509/name_constraints_test.go

    			},
    		},
    		intermediates: [][]constraintsSpec{
    			{
    				{},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"email:\"\\f\\o\\o\"@example.com"},
    		},
    		noOpenSSL: true, // OpenSSL doesn't canonicalise email addresses before matching
    	},
    
    	// #43: limiting email addresses to a host works.
    	{
    		roots: []constraintsSpec{
    			{
    				ok: []string{"email:example.com"},
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top