Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 392 for exporters (0.3 sec)

  1. src/go/types/object.go

    //
    // Objects are ordered nil before non-nil, exported before
    // non-exported, then by name, and finally (for non-exported
    // functions) by package path.
    func (a *object) less(b *object) bool {
    	if a == b {
    		return false
    	}
    
    	// Nil before non-nil.
    	if a == nil {
    		return true
    	}
    	if b == nil {
    		return false
    	}
    
    	// Exported functions before non-exported.
    	ea := isExported(a.name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/build.gradle.kts

        } else {
            // Needed for Java19 for com.google.testing.compile:compile-testing
            jvmArgs(
                "--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED",
                "--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED",
                "--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED"
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/importdecl0/importdecl0a.go

    import f2 "fmt"
    
    // reflect.flag must not be visible in this package
    type flag int
    type _ reflect.flag /* ERROR "name flag not exported by package reflect" */
    
    // imported package name may conflict with local objects
    type reflect /* ERROR "reflect already declared" */ int
    
    // dot-imported exported objects may conflict with local objects
    type Value /* ERROR "Value already declared through dot-import of package reflect" */ struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/internal/asan/doc.go

    // license that can be found in the LICENSE file.
    
    // Package asan contains helper functions for manually instrumenting
    // code for the address sanitizer.
    // The runtime package intentionally exports these functions only in the
    // asan build; this package exports them unconditionally but without the
    // "asan" build tag they are no-ops.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:39:58 UTC 2024
    - 460 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

        --input-path=/path/to/model \
        [--exported-model-signatures=signature1,signature2] \
        [--tag-names=tag1,tag2] \
        [--input-arg-shapes-str=arg-name:shape,...] \
        [--e] \
        [--output-filename=/path/to/output.mlir]
    ```
    
    * `--input-path`: The path to the input TensorFlow SavedModel or MLIR module
      with .mlir extension.
    * `--exported-model-signatures`: Comma-separated list of exported model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/README.md

    ## List of metrics exposed by MinIO
    
    - MinIO exports Prometheus compatible data by default as an authorized endpoint at `/minio/v2/metrics/cluster`. 
    - MinIO exports Prometheus compatible data by default which is bucket centric as an authorized endpoint at `/minio/v2/metrics/bucket`.
    - MinIO exports Prometheus compatible data by default which is node centric as an authorized endpoint at `/minio/v2/metrics/node`.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 12 15:49:30 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/gcimporter.go

    						err = errors.New(string(ee.Stderr))
    					}
    					return
    				}
    
    				exports := strings.Split(string(bytes.TrimSpace(output)), "\n")
    				if len(exports) != 1 {
    					err = fmt.Errorf("go list reported %d exports; expected 1", len(exports))
    					return
    				}
    
    				exportPath = exports[0]
    			})
    
    			return exportPath, err
    		})
    	}
    
    	return f.(func() (string, error))()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathContainerCrossVersionSpec.groovy

            EclipseClasspathContainer container = project.classpathContainers.find { it.path == 'whenMergedContainerPath' }
    
            then:
            container != null
            container.exported == false
        }
    
        def "Classpath container can be configured"() {
            buildFile <<
            """apply plugin: 'java'
               apply plugin: 'eclipse'
               eclipse {
                   classpath {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. src/expvar/expvar.go

    }
    
    // All published variables.
    var vars Map
    
    // Publish declares a named exported variable. This should be called from a
    // package's init function when it creates its Vars. If the name is already
    // registered then this will log.Panic.
    func Publish(name string, v Var) {
    	if _, dup := vars.m.LoadOrStore(name, v); dup {
    		log.Panicln("Reuse of exported var name:", name)
    	}
    	vars.keysMu.Lock()
    	defer vars.keysMu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 21:32:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

        if (exported_names.empty())
          return session_initializer.emitOpError()
                 << "the initializer function should be exported";
    
        if (exported_names.size() != 1)
          return session_initializer.emitOpError()
                 << "the initializer function should have only one exported names";
      }
    
      return success();
    }
    
    }  // namespace tf_saved_model
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top