Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 100 for swiftc (0.11 sec)

  1. cmd/bucket-object-lock.go

    	if lhold.Status.Valid() && lhold.Status == objectlock.LegalHoldOn {
    		return ObjectLocked{}
    	}
    
    	ret := objectlock.GetObjectRetentionMeta(oi.UserDefined)
    	if ret.Mode.Valid() {
    		switch ret.Mode {
    		case objectlock.RetCompliance:
    			// In compliance mode, a protected object version can't be overwritten
    			// or deleted by any user, including the root user in your AWS account.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. cmd/erasure-healing-common.go

    		}
    	}
    
    	return onlineDisks, modTime, ""
    }
    
    // Convert verify or check parts returned error to integer representation
    func convPartErrToInt(err error) int {
    	err = unwrapAll(err)
    	switch err {
    	case nil:
    		return checkPartSuccess
    	case errFileNotFound, errFileVersionNotFound:
    		return checkPartFileNotFound
    	case errFileCorrupt:
    		return checkPartFileCorrupt
    	case errVolumeNotFound:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. internal/event/target/postgresql.go

    			createStmt = psqlCreateAccessTable
    		}
    
    		if _, dbErr := target.db.Exec(fmt.Sprintf(createStmt, target.args.Table)); dbErr != nil {
    			return dbErr
    		}
    	}
    
    	switch target.args.Format {
    	case event.NamespaceFormat:
    		// insert or update statement
    		if target.updateStmt, err = target.db.Prepare(fmt.Sprintf(psqlUpdateRow, target.args.Table)); err != nil {
    			return err
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. internal/logger/config.go

    		envName = envName + config.Default + key
    	}
    	return env.Get(envName, defaultValue)
    }
    
    func lookupLegacyConfigForSubSys(ctx context.Context, subSys string) Config {
    	cfg := NewConfig()
    	switch subSys {
    	case config.LoggerWebhookSubSys:
    		var loggerTargets []string
    		envs := env.List(legacyEnvLoggerHTTPEndpoint)
    		for _, k := range envs {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/main/resources/header.html

                <h3 id="authoring-gradle-builds-native">Authoring C++/Swift Builds</h3>
                <ul>
                    <li><a href="../userguide/building_cpp_projects.html">Building C++ projects</a></li>
                    <li><a href="../userguide/cpp_testing.html">Testing C++ projects</a></li>
                    <li><a href="../userguide/building_swift_projects.html">Building Swift projects</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  6. src/encoding/gob/type.go

    			return nil, err
    		}
    		gt := userType.id().gobType().(*gobEncoderType)
    		switch ut.externalEnc {
    		case xGob:
    			info.wire.GobEncoderT = gt
    		case xBinary:
    			info.wire.BinaryMarshalerT = gt
    		case xText:
    			info.wire.TextMarshalerT = gt
    		}
    		rt = ut.user
    	} else {
    		t := info.id.gobType()
    		switch typ := rt; typ.Kind() {
    		case reflect.Array:
    			info.wire.ArrayT = t.(*arrayType)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. src/crypto/tls/tls.go

    		cert.Leaf = x509Cert
    	} else {
    		x509keypairleaf.IncNonDefault()
    	}
    
    	cert.PrivateKey, err = parsePrivateKey(keyDERBlock.Bytes)
    	if err != nil {
    		return fail(err)
    	}
    
    	switch pub := x509Cert.PublicKey.(type) {
    	case *rsa.PublicKey:
    		priv, ok := cert.PrivateKey.(*rsa.PrivateKey)
    		if !ok {
    			return fail(errors.New("tls: private key type does not match public key type"))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. test/codegen/arithmetic.go

    		d = divd / divr
    		// amd64:-"JMP"
    		// 386:-"JMP"
    		e = divd % divr
    		d += e
    	}
    	return d, e
    }
    
    // Check that len() and cap() calls divided by powers of two are
    // optimized into shifts and ands
    
    func LenDiv1(a []int) int {
    	// 386:"SHRL\t[$]10"
    	// amd64:"SHRQ\t[$]10"
    	// arm64:"LSR\t[$]10",-"SDIV"
    	// arm:"SRL\t[$]10",-".*udiv"
    	// ppc64x:"SRD"\t[$]10"
    	return len(a) / 1024
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. .space/CODEOWNERS

    /kotlin-native/tools/**/*.gradle.kts "Kotlin Native"
    /kotlin-native/performance/**/*.gradle "Kotlin Native"
    /kotlin-native/performance/**/*.gradle.kts "Kotlin Native"
    /native/native.tests/*.gradle.kts "Kotlin Native"
    /native/swift/**/*.gradle.kts "Kotlin Native"
    .gitignore "Kotlin Build Infrastructure"
    gradlew "Kotlin Build Infrastructure"
    gradlew.bat "Kotlin Build Infrastructure"
    
    /gradle.properties "Kotlin Build Infrastructure"
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (2)
  10. src/cmd/compile/internal/types2/infer.go

    			// If there is a core term (i.e., a core type with tilde information)
    			// unify the type parameter with the core type.
    			if core != nil {
    				// A type parameter can be unified with its core type in two cases.
    				switch {
    				case tx != nil:
    					// The corresponding type argument tx is known. There are 2 cases:
    					// 1) If the core type has a tilde, per spec requirement for tilde
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top