Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for Shardz (0.1 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

                return;
            }
    
            if (isConstraint) {
                // Need to double check that the target still has hard edges to it
                ModuleResolveState module = targetComponent.getModule();
                if (module.isPending()) {
                    selector.getTargetModule().removeUnattachedDependency(this);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    				matches = append(matches, nil)
    			}
    			for _, m := range matches {
    				if m != nil {
    					r.Matches = []k8s.HTTPRouteMatch{*m}
    				}
    				vs, err := convertHTTPRoute(r, ctx, obj, n, !mesh)
    				// This was a hard error
    				if vs == nil {
    					res.error = err
    					return conversionResult{error: err}
    				}
    				// Got an error but also routes
    				if err != nil {
    					res.error = err
    				}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. pkg/kubelet/container/runtime.go

    	// gracePeriodOverride if specified allows the caller to override the pod default grace period.
    	// only hard kill paths are allowed to specify a gracePeriodOverride in the kubelet in order to not corrupt user data.
    	// it is useful when doing SIGKILL for hard eviction scenarios, or max grace period during soft eviction scenarios.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. cmd/erasure-healing_test.go

    			disks := er.getDisks()
    			distribution := hashOrder(pathJoin(bucket, object), nDisks)
    			shuffledDisks := shuffleDisks(disks, distribution)
    
    			// remove last data shard
    			err = removeAll(pathJoin(shuffledDisks[11].String(), bucket, object))
    			if err != nil {
    				t.Fatalf("Failed to delete a file - %v", err)
    			}
    			_, err = obj.HealObject(ctx, bucket, object, "", madmin.HealOpts{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api.go

    	"strings"
    )
    
    // An Error describes a type-checking error; it implements the error interface.
    // A "soft" error is an error that still permits a valid interpretation of a
    // package (such as "unused variable"); "hard" errors may lead to unpredictable
    // behavior if ignored.
    type Error struct {
    	Pos  syntax.Pos // error position
    	Msg  string     // default error message, user-friendly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    		args := []string{"-mabi=64"}
    		if cfg.GOMIPS64 == "hardfloat" {
    			return append(args, "-mhard-float")
    		} else if cfg.GOMIPS64 == "softfloat" {
    			return append(args, "-msoft-float")
    		}
    	case "mips", "mipsle":
    		args := []string{"-mabi=32", "-march=mips32"}
    		if cfg.GOMIPS == "hardfloat" {
    			return append(args, "-mhard-float", "-mfp32", "-mno-odd-spreg")
    		} else if cfg.GOMIPS == "softfloat" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    * 🌐 Add French translation for FastAPI People. PR [#2232](https://github.com/tiangolo/fastapi/pull/2232) by [@JulianMaurin](https://github.com/JulianMaurin).
    * 🌐 Add Korean translation for Tutorial - Path Parameters. PR [#2355](https://github.com/tiangolo/fastapi/pull/2355) by [@hard-coders](https://github.com/hard-coders).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                    } else {
                        /*
                         * NOTE: Other configurators like the map-oriented one don't call into the listener, so do it the
                         * hard way.
                         */
                        validateParameters(mojoDescriptor, configuration, expressionEvaluator);
                    }
                }
    
            } catch (ComponentConfigurationException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            // If none of the incoming edges are transitive, remove previous state and do not traverse.
            // If not traversed before, simply add all selected outgoing edges (either hard or pending edges)
            // If traversed before:
            //      If net exclusions for this node have not changed, ignore
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers.go

    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: resourceQuota},
    	}
    
    	resources := make([]api.ResourceName, 0, len(resourceQuota.Status.Hard))
    	for resource := range resourceQuota.Status.Hard {
    		resources = append(resources, resource)
    	}
    	sort.Sort(SortableResourceNames(resources))
    
    	requestColumn := bytes.NewBuffer([]byte{})
    	limitColumn := bytes.NewBuffer([]byte{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top