Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 196 for Canonicalize (0.18 sec)

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

        }
    
        // Forward the corresponding input to the output
        result.replaceAllUsesWith(branch_args[common_arg_index.value()]);
      }
      return success();
    }
    
    // Canonicalizes a function if. Forwards input argument to resource results and
    // then deletes the resource results.
    LogicalResult CanonicalizeFunctionalIfCase(Operation *op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DarwinFileWatcherRegistryFactory.java

         * Therefore, we disable file system watching when we try to watch a directory whose parent is a symlink.
         *
         * Note that the project directory is canonicalized by Gradle, so the project directory can always be watched.
         */
        private static void validateLocationToWatch(File location) {
            try {
                String canonicalPath = location.getCanonicalPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalInvalidatableVirtualFileSystemConnection.java

         *
         * <p>The daemons will use this information to update the retained file system state.
         *
         * <p>The paths which are passed in need to be absolute, canonicalized paths.
         * For a delete, the deleted path should be passed.
         * For a rename, the old and the new path should be passed.
         * When creating a new file, the path to the file should be passed.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/podcgroupns_test.go

    			},
    			expectPodUID:      "2c48913c-b29f-11e7-9350-020968147796",
    			expectContainerID: "9bca8d63d5fa610783847915bcff0ecac1273e5b4bed3f6fa1b07350e0135961",
    		},
    		{
    			name: "pod UID canonicalized",
    			cgroupPaths: []string{
    				"/user.slice",
    				"/kubepods/pod2c48913c_b29f_11e7_9350_020968147796/9bca8d63d5fa610783847915bcff0ecac1273e5b4bed3f6fa1b07350e0135961",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. buildscripts/checkdeps.sh

    	# Iterate down a (possible) chain of symlinks
    	while [ -L "$TARGET_FILE" ]; do
    		TARGET_FILE=$(env readlink $TARGET_FILE)
    		cd $(dirname $TARGET_FILE)
    		TARGET_FILE=$(basename $TARGET_FILE)
    	done
    
    	# Compute the canonicalized name by finding the physical path
    	# for the directory we're in and appending the target file.
    	PHYS_DIR=$(pwd -P)
    	RESULT=$PHYS_DIR/$TARGET_FILE
    	echo $RESULT
    }
    
    ## FIXME:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaStoreTest.groovy

            ModelStoreTestUtils.removeClassFromGlobalClassSet(schema.type.rawClass)
    
            // Remove soft references
            Introspector.flushFromCaches(schema.type.rawClass)
        }
    
        def "canonicalizes introspection for different sites of generic type"() {
            when:
            def cl = new GroovyClassLoader()
            addClass(cl, "@${Managed.name} interface Thing {}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. src/net/http/servemux121.go

    	}
    	mux.handle(pattern, HandlerFunc(handler))
    }
    
    // Formerly ServeMux.Handler.
    func (mux *serveMux121) findHandler(r *Request) (h Handler, pattern string) {
    
    	// CONNECT requests are not canonicalized.
    	if r.Method == "CONNECT" {
    		// If r.URL.Path is /tree and its handler is not registered,
    		// the /tree -> /tree/ redirect applies to CONNECT requests
    		// but the path canonicalization does not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.cc

      AddShapeLegalizationPasses(pm);
      pm.addPass(createReplaceStablehloOpsInMainFunctionWithXlaCallModuleOpsPass());
      // ReplaceStablehloOpsInMainFunctionWithXlaCallModuleOpsPass may create
      // duplicate constants. Add canonicalizer to deduplicate.
      pm.addNestedPass<func::FuncOp>(mlir::createCanonicalizerPass());
      pm.addPass(TF::CreateXlaCallModuleSerializationPass());
    }
    
    void AddProcessNchwTensorPasses(OpPassManager& pm) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. cmd/handler-utils_test.go

    			},
    			metadata: map[string]string{
    				"X-Amz-Meta-Appid":   "amz-meta",
    				"X-Minio-Meta-Appid": "minio-meta",
    			},
    			shouldFail: false,
    		},
    		// Fail if header key is not in canonicalized form
    		{
    			header: http.Header{
    				"x-amz-meta-appid": []string{"amz-meta"},
    			},
    			metadata: map[string]string{
    				"x-amz-meta-appid": "amz-meta",
    			},
    			shouldFail: false,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

            fixture.overlappingOutputsAreStillPresent()
    
            where:
            overlappingOutputDir << ['build/outputs', 'build/outputs/child', 'build', 'build/other-output']
        }
    
        def "relative paths canonicalized for cleanup registry"() {
            def fixture = new StaleOutputFixture(buildDir: 'build/../some-dir')
            buildScript(fixture.buildScript)
            fixture.createInputs()
            fixture.createStaleOutputs()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top