Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 609 for getg (0.08 sec)

  1. pkg/queue/metrics.go

    )
    
    type queueMetrics struct {
    	depth        monitoring.Metric
    	latency      monitoring.Metric
    	workDuration monitoring.Metric
    	id           string
    	clock        clock.WithTicker
    }
    
    // Gets the time since the specified start in seconds.
    func (m *queueMetrics) sinceInSeconds(start time.Time) float64 {
    	return m.clock.Since(start).Seconds()
    }
    
    func newQueueMetrics(id string) *queueMetrics {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 21 16:30:36 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

        public val INT: KaType
            get() = int
    
        public abstract val long: KaType
    
        @Deprecated("Use 'long' instead.", replaceWith = ReplaceWith("long"))
        public val LONG: KaType
            get() = long
    
        public abstract val short: KaType
    
        @Deprecated("Use 'short' instead.", replaceWith = ReplaceWith("short"))
        public val SHORT: KaType
            get() = short
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. pkg/config/mesh/mesh.go

    	}
    	return &out, nil
    }
    
    // ReadMeshNetworks gets mesh networks configuration from a config file
    func ReadMeshNetworks(filename string) (*meshconfig.MeshNetworks, error) {
    	yaml, err := os.ReadFile(filename)
    	if err != nil {
    		return nil, multierror.Prefix(err, "cannot read networks config file")
    	}
    	return ParseMeshNetworks(string(yaml))
    }
    
    // ReadMeshConfig gets mesh configuration from a config file
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. maven-settings-builder/src/main/java/org/apache/maven/settings/building/UrlSettingsSource.java

         *
         * @param settingsUrl The settings URL, must not be {@code null}.
         */
        public UrlSettingsSource(URL settingsUrl) {
            super(settingsUrl);
        }
    
        /**
         * Gets the settings URL of this model source.
         *
         * @return The underlying settings URL, never {@code null}.
         * @deprecated instead use {@link #getUrl()}
         */
        @Deprecated
        public URL getSettingsUrl() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/MsPublisherExtractor.java

    import org.codelibs.fess.crawler.entity.ExtractData;
    import org.codelibs.fess.crawler.exception.CrawlerSystemException;
    import org.codelibs.fess.crawler.exception.ExtractException;
    
    /**
     * Gets a text from . file.
     *
     * @author shinsuke
     *
     */
    public class MsPublisherExtractor extends AbstractExtractor {
    
        /*
         * (non-Javadoc)
         *
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/syscall/syscall_test.go

    	}
    	if newvalue != value {
    		t.Fatalf("Getenv(%v) = %q; want %q", key, newvalue, value)
    	}
    }
    
    func TestEnv(t *testing.T) {
    	testSetGetenv(t, "TESTENV", "AVALUE")
    	// make sure TESTENV gets set to "", not deleted
    	testSetGetenv(t, "TESTENV", "")
    }
    
    // Check that permuting child process fds doesn't interfere with
    // reporting of fork/exec status. See Issue 14979.
    func TestExecErrPermutedFds(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 14 17:56:50 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/nodes/AbstractRenderableDependencyResult.java

                    return getSimpleName() + " -> " + selectedModuleComponentedIdentifier.getVersion();
                }
            }
    
            return getSimpleName() + " -> " + selected.getDisplayName();
        }
    
        /**
         * Gets simple name of requested component selector.
         *
         * @return Display name of requested component selector
         */
        private String getSimpleName() {
            return getRequested().getDisplayName();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 06 01:35:57 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/filters/storageversion.go

    		// Allow writes to the lease API in kube-system. The storage version API depends on the
    		// apiserver-identity leases to operate. Leases in kube-system are either apiserver-identity
    		// lease (which gets garbage collected when stale) or leader-election leases (which gets
    		// periodically updated by system components). Both types of leases won't be stale in etcd.
    		if requestInfo.APIGroup == "coordination.k8s.io" && requestInfo.Resource == "leases" &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/ProjectProfile.java

            this.projectPath = projectPath;
            this.configurationOperation = new ContinuousOperation(projectPath);
        }
    
        /**
         * Gets the task profiling container for the specified task.
         */
        public TaskExecution getTaskProfile(String taskPath) {
            TaskExecution result = tasks.get(taskPath);
            if (result == null) {
                result = new TaskExecution(taskPath);
                tasks.put(taskPath, result);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. maven-model/src/main/java/org/apache/maven/model/InputLocationTracker.java

     *
     * @version $Revision$ $Date$
     */
    @SuppressWarnings("all")
    public interface InputLocationTracker {
    
        // -----------/
        // - Methods -/
        // -----------/
    
        /**
         * Gets the location of the specified field in the input
         * source.
         *
         * @param field The key of the field, must not be
         * <code>null</code>.
         * @return The location of the field in the input source or
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top