Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 239 for Binary1 (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    [[sec:types_of_plugins]]
    == Types of plugins
    
    Plugins can be implemented as *binary plugins*, *precompiled script plugins*, or *script plugins*:
    
    Binary Plugins :: Binary plugins are compiled plugins typically written in Java or Kotlin DSL that are packaged as JAR files.
    They are applied to a project using the `plugins {}` block.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_request_forms_and_files/test_tutorial001.py

                        "properties": {
                            "file": {"title": "File", "type": "string", "format": "binary"},
                            "fileb": {
                                "title": "Fileb",
                                "type": "string",
                                "format": "binary",
                            },
                            "token": {"title": "Token", "type": "string"},
                        },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_request_forms_and_files/test_tutorial001_an_py39.py

                        "properties": {
                            "file": {"title": "File", "type": "string", "format": "binary"},
                            "fileb": {
                                "title": "Fileb",
                                "type": "string",
                                "format": "binary",
                            },
                            "token": {"title": "Token", "type": "string"},
                        },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/encoding/binary/binary_test.go

    		t.Run(enc.name, func(t *testing.T) {
    			_, err := enc.fn(LittleEndian, &person)
    			if err == nil {
    				t.Fatalf("binary.%s: unexpected success as size of type *binary.Person is not fixed", enc.name)
    			}
    			errs := fmt.Sprintf("binary.%s: some values are not fixed-sized in type *binary.Person", enc.name)
    			if err.Error() != errs {
    				t.Fatalf("got %q, want %q", err, errs)
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  5. Makefile.core.mk

    # Create targets for TARGET_OUT_LINUX/binary
    # There are two use cases here:
    # * Building all docker images (generally in CI). In this case we want to build everything at once, so they share work
    # * Building a single docker image (generally during dev). In this case we just want to build the single binary alone
    BUILD_ALL ?= true
    define build-linux
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. src/cmd/trace/main.go

    	telemetry.Inc("trace/invocations")
    	telemetry.CountFlags("trace/flag:", *flag.CommandLine)
    
    	// Go 1.7 traces embed symbol info and does not require the binary.
    	// But we optionally accept binary as first arg for Go 1.5 traces.
    	switch flag.NArg() {
    	case 1:
    		traceFile = flag.Arg(0)
    	case 2:
    		programBinary = flag.Arg(0)
    		traceFile = flag.Arg(1)
    	default:
    		flag.Usage()
    	}
    
    	tracef, err := os.Open(traceFile)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_request_forms_and_files/test_tutorial001_an.py

                        "properties": {
                            "file": {"title": "File", "type": "string", "format": "binary"},
                            "fileb": {
                                "title": "Fileb",
                                "type": "string",
                                "format": "binary",
                            },
                            "token": {"title": "Token", "type": "string"},
                        },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf_test.go

    			} else {
    				sprog := strings.TrimSpace(string(out))
    				stripExecs = append(stripExecs, sprog)
    			}
    		}
    	}
    
    	// Run strip on our Go PIE binary, making sure that the strip
    	// succeeds and we get no output from strip, then run the resulting
    	// stripped binary.
    	for k, sprog := range stripExecs {
    		if _, err := os.Stat(sprog); err != nil {
    			sp1, err := exec.LookPath(sprog)
    			if err != nil || sp1 == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure.sh

      # --image-credential-provider-bin-dir=${path-to-auth-provider-binary}
      # Also, it is required that DisableKubeletCloudCredentialProviders
      # feature gate is set to true for kubelet to use external credential provider.
      if [[ "${ENABLE_AUTH_PROVIDER_GCP:-}" == "true" ]]; then
        # Install out-of-tree auth-provider-gcp binary to enable kubelet to dynamically
        # retrieve credentials for a container image registry.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/tfcompile.bzl

            it is expected to be in the proto binary format.
          config: File containing tensorflow.tf2xla.Config proto.  If the file ends
            in '.pbtxt' it is expected to be in the human-readable proto text
            format, otherwise it is expected to be in the proto binary format.
          debug_info: Debug info to include in the output.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top