Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for headerv3 (0.14 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      //
      // "Deny" specifies that a validation failure results in a denied request.
      //
      // "Warn" specifies that a validation failure is reported to the request client
      // in HTTP Warning headers, with a warning code of 299. Warnings can be sent
      // both for allowed or denied admission responses.
      //
      // "Audit" specifies that a validation failure is included in the published
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. tensorflow/BUILD

    # the stream executor cuda plugins. Targets that want to use cuda APIs should
    # instead depend on the dummy plugins in @local_tsl//tsl/platform/default/build_config
    # and use header only targets.
    # TODO(ddunleavy): This seems completely broken. :tensorflow_cc depends on
    # cuda_platform from tf_additional_binary_deps and this doesn't break.
    check_deps(
        name = "cuda_plugins_check_deps",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  3. pkg/workloadapi/workload.pb.go

    const (
    	// Bytes are copied from the inner stream without modification.
    	ApplicationTunnel_NONE ApplicationTunnel_Protocol = 0
    	// Prepend PROXY protocol headers before copying bytes
    	// Standard PROXY source and destination information
    	// is included, along with potential extra TLV headers:
    	// 0xD0 - The SPIFFE identity of the source workload
    	// 0xD1 - The FQDN or Hostname of the targeted Service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. configure.py

    
    def set_tf_cuda_paths(environ_cp):
      """Set TF_CUDA_PATHS."""
      ask_cuda_paths = (
          'Please specify the comma-separated list of base paths to look for CUDA '
          'libraries and headers. [Leave empty to use the default]: ')
      tf_cuda_paths = get_from_env_or_user_or_default(environ_cp, 'TF_CUDA_PATHS',
                                                      ask_cuda_paths, '')
      if tf_cuda_paths:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. docs/bucket/notifications/README.md

    ```
    
    MinIO supports all the exchanges available in [RabbitMQ](https://www.rabbitmq.com/). For this setup, we are using `fanout` exchange.
    
    MinIO also sends with the notifications two headers: `minio-bucket` and `minio-event`. An exchange using the type "headers" can use this information to route the notifications to proper queues.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_test.go

    }
    
    // pkgName extracts the package name from src, which must contain a package header.
    func pkgName(src string) string {
    	const kw = "package "
    	if i := strings.Index(src, kw); i >= 0 {
    		after := src[i+len(kw):]
    		n := len(after)
    		if i := strings.IndexAny(after, "\n\t ;/"); i >= 0 {
    			n = i
    		}
    		return after[:n]
    	}
    	panic("missing package header: " + src)
    }
    
    func TestValuesInfo(t *testing.T) {
    	var tests = []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/sidecar_simulation_test.go

    						e.Result.VirtualHostMatched = util.BlackHole
    					}
    					// TCP without a VIP will capture everything.
    					// Auto without a VIP is similar, but HTTP happens to work because routing is done on header
    					if call.Port == 82 || (call.Port == 81 && !call.IsHTTP()) {
    						e.Result.Error = nil
    						e.Result.ClusterMatched = ""
    					}
    					testCalls = append(testCalls, e)
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            return fileNameWithoutExtension;
        }
    
        public static String getIncubatingApisWarning() {
            return INCUBATING_APIS_WARNING;
        }
    
        /**
         * Adds a comment to the header of the file.
         */
        public BuildScriptBuilder fileComment(String comment) {
            headerCommentLines.addAll(splitComment(comment));
            return this;
        }
    
        public List<SuiteSpec> getSuites() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    .IDE support matrix
    [cols=">.^,^.^,^.^,^.^",frame=none,grid=rows,options="header"]
    |===
    ||Build import|Syntax highlighting ^1^|Semantic editor ^2^
    
    |IntelliJ IDEA
    |[.green]#*✓*#
    |[.green]#*✓*#
    |[.green]#*✓*#
    
    |Android Studio
    |[.green]#*✓*#
    |[.green]#*✓*#
    |[.green]#*✓*#
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool.go

    	}
    
    	globalBucketMetadataSys.Set(bucket, meta)
    
    	// Success.
    	return nil
    }
    
    func (z *erasureServerPools) GetObjectNInfo(ctx context.Context, bucket, object string, rs *HTTPRangeSpec, h http.Header, opts ObjectOptions) (gr *GetObjectReader, err error) {
    	if err = checkGetObjArgs(ctx, bucket, object); err != nil {
    		return nil, err
    	}
    
    	// This is a special call attempted first to check for SOS-API calls.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
Back to top