Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for bigresponse (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/webhook_server.go

    			Response: &v1beta1.AdmissionResponse{
    				Allowed:   true,
    				PatchType: &pt,
    				Patch:     []byte(`[{"op": "add", "CORRUPTED_KEY":}]`),
    			},
    		})
    	case "/nilResponse":
    		w.Header().Set("Content-Type", "application/json")
    		json.NewEncoder(w).Encode(&v1beta1.AdmissionReview{})
    	case "/invalidAnnotation":
    		w.Header().Set("Content-Type", "application/json")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 15 11:11:25 UTC 2021
    - 6.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go

    			ExpectAnnotations: map[string]string{"failed-open.validating.webhook.admission.k8s.io/round_0_index_0": "nilResponse"},
    		},
    		{
    			Name: "absent response and fail closed",
    			Webhooks: []registrationv1.ValidatingWebhook{{
    				Name:                    "nilResponse",
    				ClientConfig:            ccfgURL("nilResponse"),
    				FailurePolicy:           &policyFail,
    				Rules:                   matchEverythingRules,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 47.6K bytes
    - Viewed (0)
  3. src/internal/fuzz/worker.go

    	// worker. This shouldn't be considered a crasher.
    	InternalErr string
    }
    
    // pingArgs contains arguments to workerServer.ping.
    type pingArgs struct{}
    
    // pingResponse contains results from workerServer.ping.
    type pingResponse struct{}
    
    // workerComm holds pipes and shared memory used for communication
    // between the coordinator process (client) and a worker process (server).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

                System.arraycopy(buffer, bufferIndex, this.signature, 0, 16);
                bufferIndex += 16;
            }
    
            return Smb2Constants.SMB2_HEADER_LENGTH;
        }
    
    
        boolean isResponse () {
            return ( this.flags & SMB2_FLAGS_SERVER_TO_REDIR ) == SMB2_FLAGS_SERVER_TO_REDIR;
        }
    
    
        protected abstract int writeBytesWireFormat ( byte[] dst, int dstIndex );
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                }
            });
    
        }
    
        public PingResponse ping() {
            try {
                final ClusterHealthResponse response =
                        client.admin().cluster().prepareHealth().execute().actionGet(ComponentUtil.getFessConfig().getIndexHealthTimeout());
                return new PingResponse(response);
            } catch (final OpenSearchException e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

            uid = readInt2( buffer, bufferIndex + TID_OFFSET + 4 );
            mid = readInt2( buffer, bufferIndex + TID_OFFSET + 6 );
            return HEADER_LENGTH;
        }
        boolean isResponse() {
            return ( flags & FLAGS_RESPONSE ) == FLAGS_RESPONSE;
        }
    
        /* 
         * For this packet deconstruction technique to work for
         * other networking protocols the InputStream may need
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 21K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

            this.mid = SMBUtil.readInt2(buffer, bufferIndex + SmbConstants.TID_OFFSET + 6);
            return SmbConstants.SMB1_HEADER_LENGTH;
        }
    
    
        protected boolean isResponse () {
            return ( this.flags & SmbConstants.FLAGS_RESPONSE ) == SmbConstants.FLAGS_RESPONSE;
        }
    
    
        /*
         * For this packet deconstruction technique to work for
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    	}
    	return mh.Fields
    }
    
    func (mh *http2MetaHeadersFrame) checkPseudos() error {
    	var isRequest, isResponse bool
    	pf := mh.PseudoFields()
    	for i, hf := range pf {
    		switch hf.Name {
    		case ":method", ":path", ":scheme", ":authority":
    			isRequest = true
    		case ":status":
    			isResponse = true
    		default:
    			return http2pseudoHeaderError(hf.Name)
    		}
    		// Check for duplicates.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top