Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for reachable (0.19 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        } catch (ExecutionException e) {
          builder.append("FAILURE, cause=[").append(e.getCause()).append("]");
        } catch (CancellationException e) {
          builder.append("CANCELLED"); // shouldn't be reachable
        } catch (Exception e) { // sneaky checked exception
          builder.append("UNKNOWN, cause=[").append(e.getClass()).append(" thrown from get()]");
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        } catch (ExecutionException e) {
          builder.append("FAILURE, cause=[").append(e.getCause()).append("]");
        } catch (CancellationException e) {
          builder.append("CANCELLED"); // shouldn't be reachable
        } catch (Exception e) { // sneaky checked exception
          builder.append("UNKNOWN, cause=[").append(e.getClass()).append(" thrown from get()]");
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  3. cmd/bucket-handlers.go

    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	// Check if anonymous (non-owner) has access to list objects.
    	readable := globalPolicySys.IsAllowed(policy.BucketPolicyArgs{
    		Action:          policy.ListBucketAction,
    		BucketName:      bucket,
    		ConditionValues: getConditionValues(r, "", auth.AnonymousCredentials),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    	case OpARM64NotGreaterThanF:
    		return OpARM64GreaterThanF
    	case OpARM64GreaterEqualF:
    		return OpARM64NotGreaterEqualF
    	case OpARM64NotGreaterEqualF:
    		return OpARM64GreaterEqualF
    	default:
    		panic("unreachable")
    	}
    }
    
    // arm64Invert evaluates (InvertFlags op), which
    // is the same as altering the condition codes such
    // that the same result would be produced if the arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                    }
                }
                problems.add(
                        Severity.FATAL,
                        ModelProblem.Version.BASE,
                        "Non-readable POM " + modelSource.getLocation() + ": " + msg,
                        e);
                throw problems.newModelBuilderException();
            }
    
            if (modelSource.getPath() != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  6. cmd/api-errors.go

    		Description:    "",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrBackendDown: {
    		Code:           "XMinioBackendDown",
    		Description:    "Remote backend is unreachable",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrIncorrectContinuationToken: {
    		Code:           "InvalidArgument",
    		Description:    "The continuation token provided is incorrect",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  7. pkg/workloadapi/workload.pb.go

    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	// UID represents a globally unique opaque identifier for this workload.
    	// For k8s resources, it is recommended to use the more readable format:
    	//
    	// cluster/group/kind/namespace/name/section-name
    	//
    	// As an example, a ServiceEntry with two WorkloadEntries inlined could become
    	// two Workloads with the following UIDs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top