Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 444 for exportId (0.6 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/JpmsConfiguration.java

            "--add-opens=java.prefs/java.util.prefs=ALL-UNNAMED", // required by PreferenceCleaningGroovySystemLoader
            "--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED", // Required by JdkTools and JdkJavaCompiler
            "--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED" // Required by JdkTools and JdkJavaCompiler
        ));
    
        public static final List<String> GRADLE_DAEMON_JPMS_ARGS;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. docs/site-replication/README.md

    mc alias set minio3 https://minio3.example.com:9000 adminuser adminpassword
    ```
    
    or
    
    ```sh
    export MC_HOST_minio1=https://adminuser:******@****.***
    export MC_HOST_minio2=https://adminuser:******@****.***
    export MC_HOST_minio3=https://adminuser:******@****.***
    ```
    
    - Add site replication configuration with:
    
    ```sh
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 21:30:28 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

            }
            return errors::InvalidArgument(
                "Exported function with exported name(s) ",
                absl::StrJoin(names, ", "),
                " with multiple concrete functions. Add "
                "@tf.function(input_signature=[...]) on this function, or use a "
                "narrower list of exported names that excludes this function.");
          }
        }
      }
      return absl::OkStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

      }
    
      StringRef getDescription() const override {
        return "Inserts the main function to the module.";
      }
    
      void runOnOperation() override;
    };
    
    // Checks if a FuncOp is exported.
    bool IsExported(func::FuncOp op) {
      auto exported_names =
          op->getAttrOfType<ArrayAttr>(kTfSavedModelExportedNamesAttr);
      return exported_names && !exported_names.empty();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    build systems that use content-addressable caches.
    The driver makes a single call to the gob encoder for all facts
    exported by a given analysis pass, so that the topology of
    shared data structures referenced by multiple facts is preserved.
    
    The Pass type has functions to import and export facts,
    associated either with an object or with a package:
    
    	type Pass struct {
    		...
    		ExportObjectFact func(types.Object, Fact)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/internal/msan/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package msan contains helper functions for manually instrumenting code
    // for the memory sanitizer.
    // This package exports the private msan routines in runtime unconditionally
    // but without the "msan" build tag they are no-ops.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 20:50:21 UTC 2024
    - 406 bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/macho.go

    	sortsym = append(sortsym, s)
    	nsortsym++
    	nkind[symkind(ldr, s)]++
    }
    
    // machoShouldExport reports whether a symbol needs to be exported.
    //
    // When dynamically linking, all non-local variables and plugin-exported
    // symbols need to be exported.
    func machoShouldExport(ctxt *Link, ldr *loader.Loader, s loader.Sym) bool {
    	if !ctxt.DynlinkingGo() || ldr.AttrLocal(s) {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller.go

    	if !features.EnableOptimizedServicePush {
    		return true
    	}
    	if preConv == nil {
    		return !currConv.Attributes.ExportTo.Contains(visibility.None)
    	}
    	// if service are not exported, no need to push
    	if preConv.Attributes.ExportTo.Contains(visibility.None) &&
    		currConv.Attributes.ExportTo.Contains(visibility.None) {
    		return false
    	}
    	// Check if there are any changes we care about by comparing `model.Service`s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    // Facts are analogous to type export data in a build system:
    // just as export data enables separate compilation of several passes,
    // facts enable "separate analysis".
    //
    // Each pass (a, p) starts with the set of facts produced by the
    // same analyzer a applied to the packages directly imported by p.
    // The analysis may add facts to the set, and they may be exported in turn.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. common/config/.golangci.yml

            # - name: unused-receiver
            # - name: bare-return
            # - name: flag-parameter
            # - name: unhandled-error
            # - name: if-return
      unparam:
        # Inspect exported functions, default is false. Set to true if no external program/library imports your code.
        # XXX: if you enable this setting, unparam will report a lot of false-positives in text editors:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top