Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 481 for Unauthorized (0.12 sec)

  1. pkg/kubeapiserver/options/authorization_test.go

    		"--authorization-policy-file=policy_file.json",
    		"--authorization-webhook-config-file=webhook_config_file.yaml",
    		"--authorization-webhook-version=v1",
    		"--authorization-webhook-cache-authorized-ttl=60s",
    		"--authorization-webhook-cache-unauthorized-ttl=30s",
    	}
    
    	expected := &BuiltInAuthorizationOptions{
    		Modes:                       []string{modes.ModeAlwaysAllow, modes.ModeAlwaysDeny, modes.ModeABAC, modes.ModeWebhook},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 06:28:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__scheduling.k8s.io_openapi.json

                    }
                  }
                },
                "description": "OK"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "scheduling"
            ]
          }
        }
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__storage.k8s.io_openapi.json

                    }
                  }
                },
                "description": "OK"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "storage"
            ]
          }
        }
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__storagemigration.k8s.io_openapi.json

                    }
                  }
                },
                "description": "OK"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "storagemigration"
            ]
          }
        }
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io_openapi.json

                    }
                  }
                },
                "description": "OK"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "flowcontrolApiserver"
            ]
          }
        }
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__authentication.k8s.io_openapi.json

                    }
                  }
                },
                "description": "OK"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "authentication"
            ]
          }
        }
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__coordination.k8s.io_openapi.json

                    }
                  }
                },
                "description": "OK"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "coordination"
            ]
          }
        }
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apiregistration.k8s.io_openapi.json

                    }
                  }
                },
                "description": "OK"
              },
              "401": {
                "description": "Unauthorized"
              }
            },
            "tags": [
              "apiregistration"
            ]
          }
        }
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

                    response.setStatus(500, "broken")
                }
            }
        }
    
        private Action unauthorized() {
            new ActionSupport("return 401 unauthorized") {
                void handle(HttpServletRequest request, HttpServletResponse response) {
                    response.sendError(401, "unauthorized")
                }
            }
        }
    
        private Action blocking() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

                    }
                }
            """
    
            when:
            executer.withStackTraceChecksDisabled()
            withBuildCache().run "jar"
            then:
            output.contains "response status 401: Unauthorized"
            // Make sure we don't log the password
            result.assertNotOutput("incorrect-pass")
        }
    
        def "unknown host causes the build cache to be disabled"() {
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top