Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 837 for Unexport (0.12 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/nativeplatform/tasks/AbstractUnexportMainSymbolIntegrationTest.groovy

            when:
            succeeds("unexport")
            then:
            result.assertTasksSkipped(developmentBinaryCompileTask, ":unexport")
    
            when:
            componentUnderTest.applyChangesToProject(testDirectory)
            succeeds("unexport")
            then:
            result.assertTasksNotSkipped(developmentBinaryCompileTask, ":unexport")
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/UnexportMainSymbol.java

         *
         * @since 4.5
         */
        @OutputDirectory
        public DirectoryProperty getOutputDirectory() {
            return outputDirectory;
        }
    
        @TaskAction
        protected void unexport(InputChanges inputChanges) {
            for (FileChange change : inputChanges.getFileChanges(getObjects())) {
                if (change.getChangeType() == ChangeType.REMOVED) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/add_functions_for_exported_names.cc

    }
    
    // Convert a savedmodel public function into a private function.
    // This means we need to remove any attributes that are only allowed
    // on exported (public) functions.
    void Unexport(func::FuncOp f) {
      f.setVisibility(mlir::SymbolTable::Visibility::Private);
      f->removeAttr(kTfSavedModelExportedNamesAttr);
      for (int i = 0; i < f.getNumArguments(); ++i) {
        llvm::ArrayRef<mlir::NamedAttribute> attrs =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 08:06:04 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/tasks/CppUnexportMainSymbolIntegrationTest.groovy

                }
            """
    
            when:
            succeeds("unexport")
            then:
            assertMainSymbolIsNotExported(objectFile("build/relocated/main"))
        }
    
        @Override
        protected void makeSingleProject() {
            settingsFile << "rootProject.name = 'app'"
            buildFile << """
                apply plugin: "cpp-application"
                task unexport(type: UnexportMainSymbol) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/serviceexportcache_test.go

    		t.Run(clusterLocalMode.String(), func(t *testing.T) {
    			// Create and run the controller.
    			ec, endpoints := newTestServiceExportCache(t, clusterLocalMode)
    			// Export the service and then unexport it immediately.
    			ec.export(t)
    			ec.unExport(t)
    
    			// Check that the endpoint is cluster-local
    			ec.checkServiceInstancesOrFail(t, false, endpoints)
    		})
    	}
    }
    
    func newServiceExport() *unstructured.Unstructured {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/tasks/SwiftUnexportMainSymbolIntegrationTest.groovy

        @Override
        protected void makeSingleProject() {
            settingsFile << "rootProject.name = 'app'"
            buildFile << """
                apply plugin: "swift-application"
                task unexport(type: UnexportMainSymbol) {
                    outputDirectory = layout.buildDirectory.dir("relocated")
                    objects.from { components.main.developmentBinary.get().objects }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. build/root/Makefile

    .EXPORT_ALL_VARIABLES:
    OUT_DIR ?= _output
    BIN_DIR := $(OUT_DIR)/bin
    
    ifdef KUBE_GOFLAGS
    $(info KUBE_GOFLAGS is now deprecated. Please use GOFLAGS instead.)
    ifndef GOFLAGS
    GOFLAGS := $(KUBE_GOFLAGS)
    unexport KUBE_GOFLAGS
    else
    $(error Both KUBE_GOFLAGS and GOFLAGS are set. Please use just GOFLAGS)
    endif
    endif
    
    # This controls the verbosity of the build.  Higher numbers mean more output.
    KUBE_VERBOSE ?= 1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/iexport.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Indexed package export.
    //
    // The indexed export data format is an evolution of the previous
    // binary export data format. Its chief contribution is introducing an
    // index table, which allows efficient random access of individual
    // declarations and inline function bodies. In turn, this allows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/noder/export.go

    	data.WriteByte('u')
    	writeUnifiedExport(&data)
    
    	// The linker also looks for the $$ marker - use char after $$ to distinguish format.
    	out.WriteString("\n$$B\n") // indicate binary export format
    	io.Copy(out, &data)
    	out.WriteString("\n$$\n")
    
    	if base.Debug.Export != 0 {
    		fmt.Printf("BenchmarkExportSize:%s 1 %d bytes\n", base.Ctxt.Pkgpath, data.Len())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 21:16:32 UTC 2023
    - 683 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/bexport.go

    Matthew Dempsky <******@****.***> 1669940854 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:52:50 UTC 2023
    - 293 bytes
    - Viewed (0)
Back to top