Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,657 for reselect (0.17 sec)

  1. internal/s3select/csv/record.go

    package csv
    
    import (
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io"
    	"strconv"
    	"strings"
    
    	"github.com/bcicen/jstream"
    	csv "github.com/minio/csvparser"
    	"github.com/minio/minio/internal/s3select/sql"
    )
    
    // Record - is a CSV record.
    type Record struct {
    	columnNames  []string
    	csvRecord    []string
    	nameIndexMap map[string]int64
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Sep 13 00:00:59 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/goaway_test.go

    		var watcher <-chan watchResponse
    
    		select {
    		case watcher = <-watchers:
    		default:
    			t.Fatalf("expect watcher count: %d, but got: %d", expectWatchers, i)
    		}
    
    		select {
    		case watchResp := <-watcher:
    			if watchResp.err != nil {
    				t.Fatalf("watch response got an unexepct error: %v", watchResp.err)
    			}
    			if !reflect.DeepEqual(responseBody, watchResp.body) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 12:58:54 UTC 2021
    - 13.9K bytes
    - Viewed (0)
  3. association.go

    				switch reflectValue.Kind() {
    				case reflect.Slice, reflect.Array:
    					for i := 0; i < reflectValue.Len(); i++ {
    						association.Error = rel.Field.Set(association.DB.Statement.Context, reflectValue.Index(i), reflect.Zero(rel.Field.FieldType).Interface())
    					}
    				case reflect.Struct:
    					association.Error = rel.Field.Set(association.DB.Statement.Context, reflectValue, reflect.Zero(rel.Field.FieldType).Interface())
    				}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppToolChainTest.groovy

    import org.gradle.internal.logging.text.TreeFormatter
    import org.gradle.internal.operations.BuildOperationExecutor
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.internal.reflect.Instantiator
    import org.gradle.internal.work.WorkerLeaseService
    import org.gradle.nativeplatform.internal.CompilerOutputFileNamingSchemeFactory
    import org.gradle.nativeplatform.platform.internal.NativePlatformInternal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

            expect:
            toolChain.select(platform).available
        }
    
        def "setTargets removes existing platforms"() {
            given:
            platform.name >> "SomePlatform"
            toolChain.target("SomePlatform", Mock(Action))
            toolChain.setTargets("NoPlatform")
    
            expect:
            !toolChain.select(platform).available
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz_test.go

    		healthChecker := NewInformerSyncHealthz(cacheSyncWaiterStub{
    			startedByInformerType: map[reflect.Type]bool{
    				reflect.TypeOf(corev1.Pod{}):     true,
    				reflect.TypeOf(corev1.Service{}): false,
    				reflect.TypeOf(corev1.Node{}):    true,
    			},
    		})
    
    		err := healthChecker.Check(nil)
    		if err == nil {
    			t.Errorf("expected error, got: %v", err)
    		}
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 20:43:16 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/VariantResolvingArtifactSet.java

                if (spec.getSelectFromAllVariants() && !artifacts.isEmpty()) {
                    // Variants with overridden artifacts cannot be reselected since
                    // we do not know the "true" attributes of the requested artifact.
                    return ResolvedArtifactSet.EMPTY;
                }
    
                ImmutableSet<ResolvedVariant> variants;
                try {
                    if (!spec.getSelectFromAllVariants()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/fmt.go

    		}
    		return
    	}
    
    	v := reflect.ValueOf(n).Elem()
    	t := reflect.TypeOf(n).Elem()
    	nf := t.NumField()
    	for i := 0; i < nf; i++ {
    		tf := t.Field(i)
    		vf := v.Field(i)
    		if tf.PkgPath != "" {
    			// skip unexported field - Interface will fail
    			continue
    		}
    		switch tf.Type.Kind() {
    		case reflect.Interface, reflect.Ptr, reflect.Slice:
    			if vf.IsNil() {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. pkg/config/mesh/watcher.go

    	var handlers []*WatcherHandlerRegistration
    
    	current := w.MeshConfig.Load()
    	if !reflect.DeepEqual(meshConfig, current) {
    		log.Infof("mesh configuration updated to: %s", PrettyFormatOfMeshConfig(meshConfig))
    		if !reflect.DeepEqual(meshConfig.ConfigSources, current.ConfigSources) {
    			log.Info("mesh configuration sources have changed")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 18:33:38 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. internal/s3select/errors.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package s3select
    
    import "strings"
    
    // SelectError - represents s3 select error specified in
    // https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectSELECTContent.html#RESTObjectSELECTContent-responses-special-errors.
    type SelectError interface {
    	Cause() error
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 14 16:48:36 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top