Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 48 for reachable (0.63 sec)

  1. 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)
  2. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // For example, the reference to the expression of the first item of
      // validations is "spec.validations[0].expression"
      optional string fieldRef = 2;
    
      // The content of type checking information in a human-readable form.
      // Each line of the warning contains the type that the expression is checked
      // against, followed by the type check error from the compiler.
      optional string warning = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    			// is freed when all subobjects are unreachable. The subobjects
    			// must be noscan (don't have pointers), this ensures that
    			// the amount of potentially wasted memory is bounded.
    			//
    			// Size of the memory block used for combining (maxTinySize) is tunable.
    			// Current setting is 16 bytes, which relates to 2x worst case memory
    			// wastage (when all but one subobjects are unreachable).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// validations is "spec.validations[0].expression"
    	FieldRef string `json:"fieldRef" protobuf:"bytes,2,opt,name=fieldRef"`
    	// The content of type checking information in a human-readable form.
    	// Each line of the warning contains the type that the expression is checked
    	// against, followed by the type check error from the compiler.
    	Warning string `json:"warning" protobuf:"bytes,3,opt,name=warning"`
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    	"-ifaceassert",
    	// "-lostcancel",
    	// "-methods",
    	"-nilfunc",
    	"-printf",
    	// "-rangeloops",
    	// "-shift",
    	"-slog",
    	"-stringintconv",
    	// "-structtags",
    	// "-tests",
    	// "-unreachable",
    	// "-unsafeptr",
    	// "-unusedresult",
    }
    
    func runTest(ctx context.Context, cmd *base.Command, args []string) {
    	pkgArgs, testArgs = testFlags(args)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. hack/local-up-cluster.sh

        kube::util::write_client_kubeconfig "${CONTROLPLANE_SUDO}" "${CERT_DIR}" "${ROOT_CA_FILE}" "${API_HOST}" "${API_SECURE_PORT}" admin
        ${CONTROLPLANE_SUDO} chown "${USER}" "${CERT_DIR}/client-admin.key" # make readable for kubectl
    
        # Wait for kube-apiserver to come up before launching the rest of the components.
        echo "Waiting for apiserver to come up"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                    }
                }
                problems.add(new ModelProblemCollectorRequest(Severity.FATAL, ModelProblem.Version.BASE)
                        .setMessage("Non-readable POM " + modelSource.getLocation() + ": " + msg)
                        .setException(e));
                throw problems.newModelBuildingException();
            }
    
            if (modelSource instanceof FileModelSource) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/route/route.go

    	out.ExposeHeaders = strings.Join(in.ExposeHeaders, ",")
    	if in.MaxAge != nil {
    		out.MaxAge = strconv.FormatInt(in.MaxAge.GetSeconds(), 10)
    	}
    	return &out
    }
    
    // GetRouteOperation returns readable route description for trace.
    func GetRouteOperation(in *route.Route, vsName string, port int) string {
    	path := "/*"
    	m := in.GetMatch()
    	ps := m.GetPathSpecifier()
    	if ps != nil {
    		switch ps.(type) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
Back to top