Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for committed (0.24 sec)

  1. Makefile

    	@(env bash $(PWD)/buildscripts/cross-compile.sh)
    
    verifiers: lint check-gen
    
    check-gen: ## check for updated autogenerated files
    	@go generate ./... >/dev/null
    	@(! git diff --name-only | grep '_gen.go$$') || (echo "Non-committed changes in auto-generated code is detected, please commit them to proceed." && false)
    
    lint: getdeps ## runs golangci-lint suite of linters
    	@echo "Running $@ check"
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:55:41 GMT 2024
    - 10.3K bytes
    - Viewed (1)
  2. api/maven-api-model/src/main/mdo/maven.mdo

              </association>
            </field>
            <field xdoc.separator="blank">
              <name>developers</name>
              <version>3.0.0+</version>
              <description>Describes the committers of a project.</description>
              <association>
                <type>Developer</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
            <field>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  3. cmd/admin-handlers-idp-ldap.go

    //	policy mapping
    //
    //	policy=... -> repeatable query parameter, specifying policy to query for
    //	user/group mapping
    //
    // When all query parameters are omitted, returns mappings for all policies.
    func (a adminAPIHandlers) ListLDAPPolicyMappingEntities(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	// Check authorization.
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 13.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

         * full range), snapshots are banned if root project is not a snapshot, and if range for {@code org.foo:bar} is
         * being processed, version 1 is omitted.
         *
         * @since 4.0.0
         */
        private static final String MAVEN_VERSION_FILTERS = "maven.versionFilters";
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  5. cmd/update.go

    	}
    	if IsBOSH() {
    		uaAppend("; ", "bosh")
    	}
    	if IsSourceBuild() {
    		uaAppend("; ", "source")
    	}
    
    	uaAppend(" ", Version)
    	uaAppend(" ", ReleaseTag)
    	uaAppend(" ", CommitID)
    	if IsDCOS() {
    		universePkgVersion := env.Get("MARATHON_APP_LABEL_DCOS_PACKAGE_VERSION", "")
    		// On DC/OS environment try to the get universe package version.
    		if universePkgVersion != "" {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  6. tests/query_test.go

    	if result.ID == 0 {
    		t.Errorf("Should not have ID because only selected name, %+v", result.ID)
    	}
    
    	if result.Name != "" || result.Age != 20 {
    		t.Errorf("User Name should be omitted, got %v, Age should be ok, got %v", result.Name, result.Age)
    	}
    }
    
    func TestOmitWithAllFields(t *testing.T) {
    	user := User{Name: "OmitUser1", Age: 20}
    	DB.Save(&user)
    
    	var userResult User
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Thu Apr 25 12:22:53 GMT 2024
    - 49.8K bytes
    - Viewed (0)
  7. cmd/common-main.go

    	envEntry = strings.TrimSpace(envEntry)
    	if envEntry == "" {
    		// Skip all empty lines
    		return envKV{
    			Skip: true,
    		}, nil
    	}
    	if strings.HasPrefix(envEntry, "#") {
    		// Skip commented lines
    		return envKV{
    			Skip: true,
    		}, nil
    	}
    	envTokens := strings.SplitN(strings.TrimSpace(strings.TrimPrefix(envEntry, "export")), config.EnvSeparator, 2)
    	if len(envTokens) != 2 {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 35.5K bytes
    - Viewed (2)
  8. cmd/storage-datatypes_gen.go

    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z *DeleteOptions) EncodeMsg(en *msgp.Writer) (err error) {
    	// check for omitted fields
    	zb0001Len := uint32(5)
    	var zb0001Mask uint8 /* 5 bits */
    	_ = zb0001Mask
    	if z.OldDataDir == "" {
    		zb0001Len--
    		zb0001Mask |= 0x10
    	}
    	// variable map header, size zb0001Len
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 127.5K bytes
    - Viewed (0)
  9. doc/go_spec.html

    	    <code>--</code>,
    	    <code>)</code>,
    	    <code>]</code>, or
    	    <code>}</code>
    	</li>
    </ul>
    </li>
    
    <li>
    To allow complex statements to occupy a single line, a semicolon
    may be omitted before a closing <code>")"</code> or <code>"}"</code>.
    </li>
    </ol>
    
    <p>
    To reflect idiomatic use, code examples in this document elide semicolons
    using these rules.
    </p>
    
    
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  10. cmd/metrics-v2.go

    	}
    	mg.RegisterRead(func(_ context.Context) (metrics []MetricV2) {
    		metrics = append(metrics, MetricV2{
    			Description:    getMinIOCommitMD(),
    			VariableLabels: map[string]string{"commit": CommitID},
    		})
    		metrics = append(metrics, MetricV2{
    			Description:    getMinIOVersionMD(),
    			VariableLabels: map[string]string{"version": Version},
    		})
    		return
    	})
    	return mg
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
Back to top