Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,335 for idents (0.12 sec)

  1. src/cmd/compile/internal/types2/struct.go

    	var fset objset
    
    	// current field typ and tag
    	var typ Type
    	var tag string
    	add := func(ident *syntax.Name, embedded bool) {
    		if tag != "" && tags == nil {
    			tags = make([]string, len(fields))
    		}
    		if tags != nil {
    			tags = append(tags, tag)
    		}
    
    		pos := ident.Pos()
    		name := ident.Value
    		fld := NewField(pos, check.pkg, name, typ, embedded)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ResolveArtifactsProgressCrossVersionSpec.groovy

            expectDownload()
    
            when:
            def events = ProgressEvents.create()
            withConnection {
                ProjectConnection connection -> connection.newBuild().forTasks('resolve').addProgressListener(events).run()
            }
    
            then:
            events.assertIsABuild()
    
            and:
            def resolveArtifacts = events.operation(resolveConfigurationFiles(':configurationWithDependency'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogging.java

        /**
         * Sets the events to be logged.
         *
         * @param events the events to be logged
         */
        void setEvents(Iterable<?> events);
    
        /**
         * Sets the events to be logged. Events can be passed as enum values (e.g. {@link TestLogEvent#FAILED}) or Strings (e.g. "failed").
         *
         * @param events the events to be logged
         */
        void events(Object... events);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. src/cmd/fix/cftype.go

    		if !ok {
    			return
    		}
    		pkg, ok := t.X.(*ast.Ident)
    		if !ok {
    			return
    		}
    		dst := pkg.Name + "." + t.Sel.Name
    		src := typeof[c.Args[0]]
    		if badType(dst) && src == "*unsafe.Pointer" ||
    			dst == "unsafe.Pointer" && strings.HasPrefix(src, "*") && badType(src[1:]) {
    			c.Args[0] = &ast.CallExpr{
    				Fun:  &ast.SelectorExpr{X: &ast.Ident{Name: "unsafe"}, Sel: &ast.Ident{Name: "Pointer"}},
    				Args: []ast.Expr{c.Args[0]},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:25:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/util/xdsfake/updater.go

    }
    
    // StrictMatchOrFail expects the provided events to arrive, and nothing else
    func (fx *Updater) StrictMatchOrFail(t test.Failer, events ...Event) {
    	t.Helper()
    	fx.matchOrFail(t, true, events...)
    }
    
    func (fx *Updater) matchOrFail(t test.Failer, strict bool, events ...Event) {
    	t.Helper()
    	delay := time.NewTimer(time.Second * 5)
    	defer delay.Stop()
    	for {
    		if len(events) == 0 {
    			return
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. pkg/volume/flexvolume/probe_test.go

    	}
    
    	// Act
    	events, err := prober.Probe()
    
    	// Assert
    	assert.Equal(t, 2, len(events))
    	assert.Equal(t, volume.ProbeAddOrUpdate, events[0].Op)
    	assert.Equal(t, volume.ProbeAddOrUpdate, events[1].Op)
    	assert.NoError(t, err)
    	for i := 0; i < iterations-1; i++ {
    		events, err = prober.Probe()
    		assert.Equal(t, 0, len(events))
    		assert.NoError(t, err)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go

    	SizeofIPv6MTUInfo      = 0x20
    	SizeofICMPv6Filter     = 0x20
    )
    
    const (
    	PTRACE_TRACEME = 0x0
    	PTRACE_CONT    = 0x7
    	PTRACE_KILL    = 0x8
    )
    
    type Kevent_t struct {
    	Ident  uint64
    	Filter int16
    	Flags  uint16
    	Fflags uint32
    	Data   int64
    	Udata  *byte
    }
    
    type FdSet struct {
    	Bits [16]uint64
    }
    
    const (
    	SizeofIfMsghdr         = 0xb0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. pkg/test/util/assert/tracker.go

    		t.mu.Lock()
    		defer t.mu.Unlock()
    		if len(t.events) == 0 {
    			return fmt.Errorf("no events")
    		}
    		got := t.events[0]
    		if !f(got) {
    			// Exit early instead of continuing to retry
    			err = fmt.Errorf("got events %v, which does not match criteria", t.events)
    			return nil
    		}
    		// clear the event
    		t.events[0] = ptr.Empty[T]()
    		t.events = t.events[1:]
    		return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_pod_control_test.go

    		t.Errorf("StatefulPodControl failed to create Pod error: %s", err)
    	}
    	events := collectEvents(recorder.Events)
    	if eventCount := len(events); eventCount != 2 {
    		t.Errorf("Expected 2 events for successful create found %d", eventCount)
    	}
    	for i := range events {
    		if !strings.Contains(events[i], v1.EventTypeNormal) {
    			t.Errorf("Found unexpected non-normal event %s", events[i])
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

            def downloadBMetadata = events.operation("Download ${server.uri}${projectB.pomPath}")
            def downloadBArtifact = events.operation("Download ${server.uri}${projectB.artifactPath}")
            def downloadCRootMetadata = events.operation("Download ${server.uri}/repo/group/projectC/maven-metadata.xml")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top