Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 192 for scwang (0.5 sec)

  1. src/cmd/go/testdata/script/mod_tidy_symlink_issue35941.txt

    env GO111MODULE=on
    [!symlink] skip
    
    cd m
    symlink symlink -> ../outside
    
    cp go.mod go.mod.orig
    
    # Issue 35941: suppress symlink warnings when running 'go mod tidy'.
    # 'go mod tidy' should not scan packages in symlinked subdirectories.
    go mod tidy
    ! stderr 'warning: ignoring symlink'
    cmp go.mod go.mod.orig
    
    ! go build ./symlink
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 27 18:17:01 UTC 2021
    - 898 bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PluginDependenciesSpecExtensions.kt

     *
     * Visit the [Develocity Plugin User Manual](https://docs.gradle.com/enterprise/gradle-plugin/) for additional information.
     *
     * By default, the applied plugin version will be the same as the one used by the `--scan` command line option.
     *
     * You can also use e.g. `` `gradle-enterprise` version "3.0" `` to request a different version.
     *
     * @since 6.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:10:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. interfaces.go

    type GetDBConnector interface {
    	GetDBConn() (*sql.DB, error)
    }
    
    // Rows rows interface
    type Rows interface {
    	Columns() ([]string, error)
    	ColumnTypes() ([]*sql.ColumnType, error)
    	Next() bool
    	Scan(dest ...interface{}) error
    	Err() error
    	Close() error
    }
    
    type ErrorTranslator interface {
    	Translate(err error) error
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Aug 19 13:33:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. build-logic/buildquality/src/main/kotlin/gradlebuild.arch-test.gradle.kts

                            extensions.findByType<DevelocityTestConfiguration>()?.apply {
                                // PTS doesn't work well with architecture tests which scan all classes
                                predictiveTestSelection.enabled = false
                            }
                        }
                    }
                }
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. finisher_api.go

    	rows, ok := tx.Statement.Dest.(*sql.Rows)
    	if !ok && tx.DryRun && tx.Error == nil {
    		tx.Error = ErrDryRunModeUnsupported
    	}
    	return rows, tx.Error
    }
    
    // Scan scans selected value to the struct dest
    func (db *DB) Scan(dest interface{}) (tx *DB) {
    	config := *db.Config
    	currentLogger, newLogger := config.Logger, logger.Recorder.New()
    	config.Logger = newLogger
    
    	tx = db.getInstance()
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_parse_err.txt

    module m
    
    go 1.13
    
    -- p/a.go --
    package a
    
    import "fmt"
    
    -- p/b.go --
    // no package statement
    
    -- t/t_test.go --
    package t
    
    import "testing"
    
    func Test(t *testing.T) {}
    
    // scan error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 15:42:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    		// mcmodel=large must always be enabled to allow large TOC.
    		a = append(a, "-mcmodel=large")
    	}
    
    	// disable ASCII art in clang errors, if possible
    	if b.gccSupportsFlag(compiler, "-fno-caret-diagnostics") {
    		a = append(a, "-fno-caret-diagnostics")
    	}
    	// clang is too smart about command-line arguments
    	if b.gccSupportsFlag(compiler, "-Qunused-arguments") {
    		a = append(a, "-Qunused-arguments")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/generate/generate.go

    files. Those commands can run any process but the intent is to
    create or update Go source files.
    
    Go generate is never run automatically by go build, go test,
    and so on. It must be run explicitly.
    
    Go generate scans the file for directives, which are lines of
    the form,
    
    	//go:generate command argument...
    
    (note: no leading spaces and no space in "//go") where command
    is the generator to be run, corresponding to an executable file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. tests/serializer_test.go

    	}
    	return s
    }
    
    type Roles []string
    
    type Job struct {
    	Title    string
    	Number   int
    	Location string
    	IsIntern bool
    }
    
    type EncryptedString string
    
    func (es *EncryptedString) Scan(ctx context.Context, field *schema.Field, dst reflect.Value, dbValue interface{}) (err error) {
    	switch value := dbValue.(type) {
    	case []byte:
    		*es = EncryptedString(bytes.TrimPrefix(value, []byte("hello")))
    	case string:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 21 14:09:38 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. .github/workflows/contributor-pr.yml

      cancel-in-progress: true
    
    env:
      # Set the DEVELOCITY_ACCESS_KEY so that Gradle Build Scans are generated
      DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
      # Enable debug for the `gradle-build-action` cache operations
      GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
    
    permissions: {}
    
    jobs:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top