Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 219 for SELF (0.09 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

            y:      y,
            width:  width,
            src:    g.src,
    	sumpos: g.sumpos,
    	sumneg: g.sumneg,
            self:   g.self,
          };
          displayList.push(box);
          if (direction > 0) {
    	// Leave gap on left hand side to indicate self contribution.
    	x += xscale*Math.abs(g.self);
          }
        }
        y += direction * ROW;
    
        // Find child or parent stacks.
        const next = [];
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/descriptor/UrlRepositoryDescriptor.java

                this.url = url;
            }
    
            @SuppressWarnings("unchecked")
            protected T self() {
                return (T) this;
            }
    
            public T setMetadataSources(List<String> metadataSources) {
                this.metadataSources = ImmutableList.copyOf(metadataSources);
                return self();
            }
    
            public T setAuthenticated(boolean authenticated) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Multisets.java

      static <E extends @Nullable Object> boolean addAllImpl(
          Multiset<E> self, Collection<? extends E> elements) {
        checkNotNull(self);
        checkNotNull(elements);
        if (elements instanceof Multiset) {
          return addAllImpl(self, cast(elements));
        } else if (elements.isEmpty()) {
          return false;
        } else {
          return Iterators.addAll(self, elements.iterator());
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/modifiers/renderers/KtRendererModalityModifierProvider.kt

        ): KaRendererModalityModifierProvider {
            val self = this
            return object : KaRendererModalityModifierProvider {
                override fun getModalityModifier(analysisSession: KaSession, symbol: KaSymbolWithModality): KtModifierKeywordToken? =
                    if (condition(analysisSession, symbol)) self.getModalityModifier(analysisSession, symbol)
                    else null
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy_test.go

    						OpenAPIV3Schema: &apiextensions.JSONSchemaProps{
    							Type: "object",
    							XValidations: apiextensions.ValidationRules{
    								{
    									Rule:            "size(self) > 0",
    									Message:         "openAPIV3Schema should contain more than 0 element.",
    									OptionalOldSelf: ptr.To(true),
    								},
    							},
    							Properties: map[string]apiextensions.JSONSchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/modifiers/renderers/KtRendererVisibilityModifierProvider.kt

        ): KaRendererVisibilityModifierProvider {
            val self = this
            return object : KaRendererVisibilityModifierProvider {
                override fun getVisibilityModifier(analysisSession: KaSession, symbol: KaSymbolWithVisibility): KtModifierKeywordToken? =
                    if (condition(analysisSession, symbol)) self.getVisibilityModifier(analysisSession, symbol) else null
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

              if (nanos == 0L) return
    
              // Yield until notified, interrupted, or the duration elapses.
              val waitUntil = nanoTime + nanos
              val self = currentTask
              waitingCoordinatorTask = self
              waitingCoordinatorNotified = false
              waitingCoordinatorInterrupted = false
              yieldUntil {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskExecutionIntegrationTest.groovy

                        }
                    }
                }
            """
    
            then:
            createdTasksFor("t1") == [":t1"]
        }
    
        @UnsupportedWithConfigurationCache
        def "task container is self closed by task selection and can be later graph closed"() {
            when:
            buildFile << '''
                import org.gradle.model.internal.core.*
    
                model {
                    tasks {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/productpage.py

        return requests.get(url, **kwargs)
    
    
    class Writer(object):
        def __init__(self, filename):
            self.file = open(filename, 'w')
    
        def write(self, data):
            self.file.write(data)
    
        def flush(self):
            self.file.flush()
    
    
    if __name__ == '__main__':
        if len(sys.argv) < 2:
            logging.error("usage: %s port" % (sys.argv[0]))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. src/os/executable_procfs.go

    )
    
    func executable() (string, error) {
    	var procfn string
    	switch runtime.GOOS {
    	default:
    		return "", errors.New("Executable not implemented for " + runtime.GOOS)
    	case "linux", "android":
    		procfn = "/proc/self/exe"
    	case "netbsd":
    		procfn = "/proc/curproc/exe"
    	}
    	path, err := Readlink(procfn)
    
    	// When the executable has been deleted then Readlink returns a
    	// path appended with " (deleted)".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:26:04 UTC 2024
    - 715 bytes
    - Viewed (0)
Back to top