Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 213 for Closest (0.28 sec)

  1. src/go/types/return.go

    // with a single-pass label/break matching phase.
    
    // hasBreak reports if s is or contains a break statement
    // referring to the label-ed statement or implicit-ly the
    // closest outer breakable statement.
    func hasBreak(s ast.Stmt, label string, implicit bool) bool {
    	switch s := s.(type) {
    	default:
    		panic("unreachable")
    
    	case *ast.BadStmt, *ast.DeclStmt, *ast.EmptyStmt, *ast.ExprStmt,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java

            return getExecutionPlanItems().iterator();
        }
    
        /**
         * Returns the last ExecutionPlanItem in the supplied phase. If no items are in the specified phase,
         * the closest executionPlanItem from an earlier phase item will be returned.
         *
         * @param requestedPhase the requested phase
         *                       The execution plan item
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/script.js

                    $tree.append($('<p/>').text("No dependency"));
                }
    
                $tree.on('click', 'a', function(event) {
                    event.preventDefault();
                    var module = $(this).closest('li').attr('data-module');
                    showModuleInsight(module, configuration.moduleInsights);
                });
    
                $configurationDiv.append($contentDiv);
                $dependencies.append($configurationDiv);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 24 19:38:03 UTC 2020
    - 8.2K bytes
    - Viewed (0)
  4. src/main/webapp/js/search.js

        setTimeout(function() {
          $searchButton.attr("disabled", false);
        }, 3000);
        return true;
      });
    
      $(document).on("click touchend", function(e) {
        if (!$(e.target).closest("#searchOptions, [data-toggle='control-options']").length) {
          $("#searchOptions").removeClass("active");
        }
      });
    
      $("[data-toggle='control-options']").click(function(e) {
        e.preventDefault();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 7.5K bytes
    - Viewed (1)
  5. pkg/controller/volume/persistentvolume/index.go

    //	     []v1.PersistentVolumeAccessMode {
    //				v1.ReadWriteOnce, v1.ReadOnlyMany, v1.ReadWriteMany,
    //			},
    //	}
    //
    // This func returns modes with ascending levels of modes to give the user
    // what is closest to what they actually asked for.
    func (pvIndex *persistentVolumeOrderedIndex) allPossibleMatchingAccessModes(requestedModes []v1.PersistentVolumeAccessMode) [][]v1.PersistentVolumeAccessMode {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/structtag/structtag.go

    			return
    		}
    	}
    }
    
    // checkTagDuplicates checks a single struct field tag to see if any tags are
    // duplicated. nearest is the field that's closest to the field being checked,
    // while still being part of the top-level struct type.
    func checkTagDuplicates(pass *analysis.Pass, tag, key string, nearest, field *types.Var, seen *namesSeen, level int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/dom.go

    				changed = true
    			}
    		}
    		if !changed {
    			break
    		}
    	}
    	// Set idom of entry block to nil instead of itself.
    	idom[f.Entry.ID] = nil
    	return idom
    }
    
    // intersect finds the closest dominator of both b and c.
    // It requires a postorder numbering of all the blocks.
    func intersect(b, c *Block, postnum []int, idom []*Block) *Block {
    	// TODO: This loop is O(n^2). It used to be used in nilcheck,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    		for _, v := range strings.Split(v, "-") {
    			b.AddVariant(v)
    		}
    	}
    	for _, e := range tag.Extensions() {
    		b.AddExt(e)
    	}
    	return t
    }
    
    // FromTag reports closest matching ID for an internal language Tag.
    func FromTag(t language.Tag) (id ID, exact bool) {
    	// TODO: perhaps give more frequent tags a lower index.
    	// TODO: we could make the indexes stable. This will excluded some
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/metrics/metrics.go

    		// the lowest bucket was based around the 180ns/op figure for BenchmarkAccess,
    		// plus some additional leeway to account for the apiserver doing other things
    		// the largest bucket was chosen based on the fact that benchmarks indicate the
    		// same Xeon running a CEL expression close to the estimated cost limit takes
    		// around 760ms, so that bucket should only ever have the slowest CEL expressions
    		// in it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. okhttp-testing-support/src/main/kotlin/okhttp3/CallEvent.kt

    @SuppressSignatureCheck
    sealed class CallEvent {
      abstract val timestampNs: Long
      abstract val call: Call
    
      val name: String
        get() = javaClass.simpleName
    
      /** Returns if the event closes this event, or null if this is no open event. */
      open fun closes(event: CallEvent): Boolean? = null
    
      data class ProxySelectStart(
        override val timestampNs: Long,
        override val call: Call,
        val url: HttpUrl,
      ) : CallEvent()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top