Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 87 for flagname (0.12 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    // the source. This function will return an error if both base and diff base
    // profiles are specified.
    func (source *source) addBaseProfiles(flagBase, flagDiffBase []*string) error {
    	base, diffBase := dropEmpty(flagBase), dropEmpty(flagDiffBase)
    	if len(base) > 0 && len(diffBase) > 0 {
    		return errors.New("-base and -diff_base flags cannot both be specified")
    	}
    
    	source.Base = base
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. maven-embedder/src/main/mdo/core-extensions.mdo

      <defaults>
        <default>
          <key>package</key>
          <value>org.apache.maven.cli.internal.extension.model</value>
        </default>
      </defaults>
    
      <classes>
        <class rootElement="true" xml.tagName="extensions" xsd.compositor="sequence">
          <name>CoreExtensions</name>
          <description>Extensions to load.</description>
          <version>1.0.0+</version>
          <fields>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/flag/flag_test.go

    		t.Error("Visit fails after set")
    		for k, v := range m {
    			t.Log(k, *v)
    		}
    	}
    	// Now test they're visited in sort order.
    	var flagNames []string
    	Visit(func(f *Flag) { flagNames = append(flagNames, f.Name) })
    	if !slices.IsSorted(flagNames) {
    		t.Errorf("flag names not sorted: %v", flagNames)
    	}
    }
    
    func TestGet(t *testing.T) {
    	ResetForTesting(nil)
    	Bool("test_bool", true, "bool value")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitHttpRepository.java

            return backingRepo.createBranch(branchName);
        }
    
        @Override
        public Ref createLightWeightTag(String tagName) throws GitAPIException {
            return backingRepo.createLightWeightTag(tagName);
        }
    
        public BlockingHttpServer.ExpectedRequest listVersions() {
            return server.get(backingRepo.getName() + "/info/refs", getRefsAction());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitRepository.java

    public interface GitRepository {
        URI getUrl();
    
        Ref createBranch(String branchName) throws GitAPIException;
    
        Ref checkout(String branchName) throws GitAPIException;
    
        Ref createLightWeightTag(String tagName) throws GitAPIException;
    
        TestFile getWorkTree();
    
        TestFile file(Object... path);
    
        RevCommit commit(String message) throws GitAPIException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/net/interface.go

    	FlagRunning                        // interface is in running state
    )
    
    var flagNames = []string{
    	"up",
    	"broadcast",
    	"loopback",
    	"pointtopoint",
    	"multicast",
    	"running",
    }
    
    func (f Flags) String() string {
    	s := ""
    	for i, name := range flagNames {
    		if f&(1<<uint(i)) != 0 {
    			if s != "" {
    				s += "|"
    			}
    			s += name
    		}
    	}
    	if s == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. istioctl/pkg/tag/util.go

    }
    
    // GetWebhookRevision extracts tag target revision from webhook object.
    func GetWebhookRevision(wh admitv1.MutatingWebhookConfiguration) (string, error) {
    	if tagName, ok := wh.ObjectMeta.Labels[label.IoIstioRev.Name]; ok {
    		return tagName, nil
    	}
    	return "", fmt.Errorf("could not extract tag revision from webhook")
    }
    
    // DeleteTagWebhooks deletes the given webhooks.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry_logging_test.go

    	for _, tc := range []struct {
    		name        string
    		logName     string
    		clusterName string
    		hostname    string
    		body        string
    		labels      *structpb.Struct
    		expected    *otelaccesslog.OpenTelemetryAccessLogConfig
    	}{
    		{
    			name:        "default",
    			logName:     OtelEnvoyAccessLogFriendlyName,
    			clusterName: fakeCluster,
    			hostname:    fakeAuthority,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

            List<Element> inSection = new ArrayList<>();
            inSection.add(heading);
    
            Element next = heading.nextElementSibling();
            while (true) {
                if (next == null || next.tagName().equals("h2")) {
                    Element section = heading.before("<section class='topic'/>").previousElementSibling();
                    Elements inSectionElements = new Elements(inSection);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. maven-core/src/test/projects/lifecycle-executor/project-with-multiple-executions/src/main/mdo/supplemental-model.mdo

      <defaults>
        <default>
          <key>package</key>
          <value>org.apache.maven.plugin.resources.remote</value>
        </default>
      </defaults>
      <classes>
        <class rootElement="true" xml.tagName="supplementalDataModels" xsd.compositor="sequence">
          <name>SupplementalDataModel</name>
          <version>1.0.0</version>
          <description>Root element of the supplemental-models.xml file.</description>
          <fields>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 21 12:56:07 UTC 2009
    - 2.1K bytes
    - Viewed (0)
Back to top