Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 286 for forbidden (1.06 sec)

  1. tests/test_tutorial/test_bigger_applications/test_main_an.py

                                "content": {"application/json": {"schema": {}}},
                            },
                            "404": {"description": "Not found"},
                            "403": {"description": "Operation forbidden"},
                            "422": {
                                "description": "Validation Error",
                                "content": {
                                    "application/json": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. pkg/util/tolerations/tolerations_test.go

    		},
    		{
    			testName:  "allow all",
    			input:     []string{"foo-bar-nosched", "foo-bar-nosched"},
    			whitelist: []string{"all"},
    			expected:  true,
    		},
    		{
    			testName:  "duplicate input forbidden",
    			input:     []string{"foo-bar-nosched", "foo-bar-nosched"},
    			whitelist: []string{"foo-baz-nosched"},
    			expected:  false,
    		},
    		{
    			testName:  "value mismatch",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 26 22:25:49 UTC 2019
    - 11.4K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_bigger_applications/test_main.py

                                "content": {"application/json": {"schema": {}}},
                            },
                            "404": {"description": "Not found"},
                            "403": {"description": "Operation forbidden"},
                            "422": {
                                "description": "Validation Error",
                                "content": {
                                    "application/json": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  4. src/crypto/md5/md5block_arm.s

    #define Rb	R3	// MD5 accumulator
    #define Rc	R4	// MD5 accumulator
    #define Rd	R5	// MD5 accumulator
    #define Rc0	R6	// MD5 constant
    #define Rc1	R7	// MD5 constant
    #define Rc2	R8	// MD5 constant
    // r9, r10 are forbidden
    // r11 is OK provided you check the assembler that no synthetic instructions use it
    #define Rc3	R11	// MD5 constant
    #define Rt0	R12	// temporary
    #define Rt1	R14	// temporary
    
    // func block(dig *digest, p []byte)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

                                        + " byte) is over " + maxLength + " byte. The url is " + filePath);
                            }
                        }
                    } else {
                        // Forbidden
                        responseData.setHttpStatusCode(Constants.FORBIDDEN_STATUS_CODE);
                        responseData.setMimeType(APPLICATION_OCTET_STREAM);
                    }
                } else if (file.isDirectory()) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 23 01:54:10 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/deadcode.go

    					liveOrderStmts = append(liveOrderStmts, x)
    				}
    			}
    		}
    	}
    
    	return
    }
    
    // deadcode removes dead code from f.
    func deadcode(f *Func) {
    	// deadcode after regalloc is forbidden for now. Regalloc
    	// doesn't quite generate legal SSA which will lead to some
    	// required moves being eliminated. See the comment at the
    	// top of regalloc.go for details.
    	if f.RegAlloc != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java

                                        + " byte) is over " + maxLength + " byte. The url is " + filePath);
                            }
                        }
                    } else {
                        // Forbidden
                        responseData.setHttpStatusCode(Constants.FORBIDDEN_STATUS_CODE);
                        responseData.setMimeType(APPLICATION_OCTET_STREAM);
                    }
                } else if (file.isDirectory()) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. src/syscall/mksyscall.pl

    	if ((($darwin || ($openbsd && $libc)) && $func =~ /^ptrace(Ptr)?$/)) {
    		# The ptrace function is called from forkAndExecInChild where stack
    		# growth is forbidden.
    		$text .= "//go:nosplit\n"
    	}
    
    	# Go function header.
    	my $out_decl = @out ? sprintf(" (%s)", join(', ', @out)) : "";
    	$text .= sprintf "func %s(%s)%s {\n", $func, join(', ', @in), $out_decl;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. pkg/controller/endpoint/endpoints_controller.go

    	}
    	if err != nil {
    		if createEndpoints && errors.IsForbidden(err) {
    			// A request is forbidden primarily for two reasons:
    			// 1. namespace is terminating, endpoint creation is not allowed by default.
    			// 2. policy is misconfigured, in which case no service would function anywhere.
    			// Given the frequency of 1, we log at a lower level.
    			logger.V(5).Info("Forbidden from creating endpoints", "error", err)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        UrlComponentEncodingTester.newInstance()
          .nonPrintableAscii(Encoding.FORBIDDEN)
          .nonAscii(Encoding.PUNYCODE)
          .override(
            Encoding.FORBIDDEN,
            '\t'.code,
            '\n'.code,
            '\u000c'.code,
            '\r'.code,
            ' '.code,
          )
          .override(
            Encoding.FORBIDDEN,
            '#'.code,
            '%'.code,
            '/'.code,
            ':'.code,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top