Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 151 for stabilize (0.15 sec)

  1. src/cmd/compile/internal/types2/interface.go

    	typ := (*Checker)(nil).newInterface()
    	for _, m := range methods {
    		if sig := m.typ.(*Signature); sig.recv == nil {
    			sig.recv = NewVar(m.pos, m.pkg, "", typ)
    		}
    	}
    
    	// sort for API stability
    	sortMethods(methods)
    
    	typ.methods = methods
    	typ.embeddeds = embeddeds
    	typ.complete = true
    
    	return typ
    }
    
    // check may be nil
    func (check *Checker) newInterface() *Interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    )
    
    /*
     * By default, all the following metrics are defined as falling under
     * ALPHA stability level https://github.com/kubernetes/enhancements/blob/master/keps/sig-instrumentation/1209-metrics-stability/kubernetes-control-plane-metrics-stability.md#stability-classes)
     *
     * Promoting the stability level of the metric is a responsibility of the component owner, since it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  3. pkg/util/oom/oom_linux.go

    	}
    	return err
    }
    
    // Writes 'value' to /proc/<pid>/oom_score_adj for all processes in cgroup cgroupName.
    // Keeps trying to write until the process list of the cgroup stabilizes, or until maxTries tries.
    func (oomAdjuster *OOMAdjuster) applyOOMScoreAdjContainer(cgroupName string, oomScoreAdj, maxTries int) error {
    	adjustedProcessSet := make(map[int]bool)
    	for i := 0; i < maxTries; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 07:13:28 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/inline/interleaved/interleaved.go

    				return inlCall
    			}
    			return nil
    		}
    
    		fixpoint(fn, match, edit)
    	})
    }
    
    // fixpoint repeatedly edits a function until it stabilizes.
    //
    // First, fixpoint applies match to every node n within fn. Then it
    // iteratively applies edit to each node satisfying match(n).
    //
    // If edit(n) returns nil, no change is made. Otherwise, the result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. tests/integration/telemetry/util.go

    	if err != nil {
    		return defaultTrustDomain
    	}
    
    	return cfg.TrustDomain
    }
    
    // QueryPrometheus queries prometheus and returns the result once the query stabilizes
    func QueryPrometheus(t framework.TestContext, cluster cluster.Cluster, query prometheus.Query, promInst prometheus.Instance) (string, error) {
    	t.Helper()
    	t.Logf("query prometheus with: %v", query)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 16:30:22 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. cluster/gce/gci/README.md

    Container-Optimized OS is [open source](https://cos.googlesource.com), and is released on milestones. Example milestones are
    81, 85. Each milestone will experience three release channels -- dev, beta and stable to reach
    stability. The promotion between those channels are about six weeks.
    Starting milestone 69, for
    every 4 milestones, the last milestone will be promoted into LTS image after it
    becomes stable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 14:55:40 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/collector/DefaultProjectsSelector.java

                }
            }
    
            if (problems) {
                LOGGER.warn("");
                LOGGER.warn("It is highly recommended to fix these problems"
                        + " because they threaten the stability of your build.");
                LOGGER.warn("");
                LOGGER.warn("For this reason, future Maven versions might no"
                        + " longer support building such malformed projects.");
                LOGGER.warn("");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 09 23:46:02 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/public/saved_model_api.h

    #ifdef __cplusplus
    extern "C" {
    #endif  // __cplusplus
    
    // An opaque type representing a Tensorflow "SavedModel"
    // (https://www.tensorflow.org/guide/saved_model) that we always pass by pointer
    // to achieve ABI stability.
    typedef struct TF_SavedModel TF_SavedModel;
    
    // Load a SavedModel from `dirname`. We expect the SavedModel to contain a
    // single Metagraph (as for those exported from TF2's `tf.saved_model.save`).
    //
    // Params:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 04 00:45:47 UTC 2020
    - 5K bytes
    - Viewed (0)
  9. src/go/types/interface.go

    	typ := (*Checker)(nil).newInterface()
    	for _, m := range methods {
    		if sig := m.typ.(*Signature); sig.recv == nil {
    			sig.recv = NewVar(m.pos, m.pkg, "", typ)
    		}
    	}
    
    	// sort for API stability
    	sortMethods(methods)
    
    	typ.methods = methods
    	typ.embeddeds = embeddeds
    	typ.complete = true
    
    	return typ
    }
    
    // check may be nil
    func (check *Checker) newInterface() *Interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/DefaultDependencyCoordinateResolverFactory.java

         *
         * TODO: While this is currently static, we should selectively enable it in order to run
         *       versionMapping tests against both implementations.
         *
         * TODO: Once dependency mapping is stabilized, we should be able to turn this off / remove it entirely
         */
        private static final boolean USE_LEGACY_VERSION_MAPPING = true;
    
        private final ProjectDependencyPublicationResolver projectDependencyResolver;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top