Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for accept4 (0.34 sec)

  1. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

                    "schema": {
                      "$ref": "#/components/schemas/io.k8s.api.events.v1.Event"
                    }
                  }
                },
                "description": "Accepted"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "events_v1"
            ],
            "x-kubernetes-action": "post",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 142.7K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

                    "schema": {
                      "$ref": "#/components/schemas/io.k8s.api.certificates.v1.CertificateSigningRequest"
                    }
                  }
                },
                "description": "Accepted"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "certificates_v1"
            ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                    "schema": {
                      "$ref": "#/components/schemas/io.k8s.api.discovery.v1.EndpointSlice"
                    }
                  }
                },
                "description": "Accepted"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "discovery_v1"
            ],
            "x-kubernetes-action": "post",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

                    "schema": {
                      "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler"
                    }
                  }
                },
                "description": "Accepted"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "autoscaling_v2"
            ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	procWriteProcessMemory                                   = modkernel32.NewProc("WriteProcessMemory")
    	procAcceptEx                                             = modmswsock.NewProc("AcceptEx")
    	procGetAcceptExSockaddrs                                 = modmswsock.NewProc("GetAcceptExSockaddrs")
    	procTransmitFile                                         = modmswsock.NewProc("TransmitFile")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  6. cmd/object-handlers_test.go

    	// Its necessary to set the "X-Amz-Copy-Source" header for the request to be accepted by the handler.
    	nilReq.Header.Set("X-Amz-Copy-Source", url.QueryEscape(SlashSeparator+nilBucket+SlashSeparator+nilObject))
    
    	// execute the object layer set to `nil` test.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        ```
    
        This way, %compile will determine the layout, which will be respected by
        %copy_to_device. There will not be send/recv ops added by later passes,
        because tf.TPUCopyWithLayout accepts a host input and produces a device
        output.
      }];
    }
    
    def DeviceIndexSelectorPass : Pass<"tf-device-index-selector", "mlir::func::FuncOp"> {
      let summary = "Fold tf.DeviceIndex to constant.";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    		}
    
    	case 44: /* indexed store */
    		o1 = AOP_RRR(c.opstorex(p.As), uint32(p.From.Reg), uint32(p.To.Index), uint32(p.To.Reg))
    
    	case 45: /* indexed load */
    		switch p.As {
    		/* The assembler accepts a 4-operand l*arx instruction. The fourth operand is an Exclusive Access Hint (EH) */
    		/* The EH field can be used as a lock acquire/release hint as follows: */
    		/* 0 = Atomic Update (fetch-and-operate or similar algorithm) */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  9. api/maven-api-model/src/main/mdo/maven.mdo

                and not the licenses that apply to dependencies.
                If multiple licenses are listed, it is assumed that the user can select
                any of them, not that they must accept all.
                ]]>
              </description>
              <association>
                <type>License</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    func ValidateMaxServerConnectionAge(in time.Duration) error {
    	if err := IsNegativeDuration(in); err != nil {
    		return fmt.Errorf("%v: --keepaliveMaxServerConnectionAge only accepts positive duration eg: 30m", err)
    	}
    	return nil
    }
    
    // IsNegativeDuration check if the duration is negative
    func IsNegativeDuration(in time.Duration) error {
    	if in < 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top