Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for addAction (0.14 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    			var compressedSegName string
    			if ctxt.IsELF {
    				compressedSegName = ldr.SymSect(s).Name
    			} else {
    				compressedSegName = ".zdebug_" + ldr.SymSect(s).Name[len(".debug_"):]
    			}
    			sect := addsection(ctxt.loader, ctxt.Arch, &Segdwarf, compressedSegName, 04)
    			sect.Align = int32(ctxt.Arch.Alignment)
    			sect.Length = uint64(len(z.compressed))
    			sect.Compressed = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	// Check if an EDS event is fired
    	ev := fx.WaitOrFail(t, "eds")
    	// check if the hostname matches that of k8s service svc1.nsA
    	if ev.ID != "svc1.nsA.svc.company.com" {
    		t.Fatalf("eds event for workload entry addition did not match the expected service. got %s, want %s",
    			ev.ID, "svc1.nsA.svc.company.com")
    	}
    	// we should have the pod IP and the workload Entry's IP in the endpoints..
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. pkg/controller/endpoint/endpoints_controller_test.go

    			}
    
    			time.Sleep(tc.finalDelay)
    			endpointsHandler.ValidateRequestCount(t, tc.wantRequestCount)
    		})
    	}
    }
    
    // TestPodAddsBatching verifies that endpoint updates caused by pod addition are batched together.
    // This test uses real time.Sleep, as there is no easy way to mock time in endpoints controller now.
    // TODO(mborsz): Migrate this test to mock clock when possible.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    // loaded by the most recent call to LoadPackages or ImportFromFiles,
    // including any go.mod files needed to reconstruct the MVS result
    // or identify go versions,
    // in addition to the checksums for every module in keepMods.
    func keepSums(ctx context.Context, ld *loader, rs *Requirements, which whichSums) map[module.Version]bool {
    	// Every module in the full module graph contributes its requirements,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Undeclared shared build service usage::
    When enabled, tasks using a <<build_services#build_services, shared build service>> without declaring the requirement via the `Task.usesService` method will emit a deprecation warning.
    
    In addition, when the configuration cache is not enabled but the feature flag is present, deprecations for the following <<config_cache:requirements, configuration cache requirements>> are also enabled:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    variables are unchanged. A cached test result is treated as executing
    in no time at all, so a successful package test result will be cached and
    reused regardless of -timeout setting.
    
    In addition to the build flags, the flags handled by 'go test' itself are:
    
    	-args
    	    Pass the remainder of the command line (everything after -args)
    	    to the test binary, uninterpreted and unchanged.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    // An mspan is a run of pages.
    //
    // When a mspan is in the heap free treap, state == mSpanFree
    // and heapmap(s->start) == span, heapmap(s->start+s->npages-1) == span.
    // If the mspan is in the heap scav treap, then in addition to the
    // above scavenged == true. scavenged == false in all other cases.
    //
    // When a mspan is allocated, state == mSpanInUse or mSpanManual
    // and heapmap(i) == span for all s->start <= i < s->start+s->npages.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    // An atomicLoadPkgFlags stores a loadPkgFlags for which individual flags can be
    // added atomically.
    type atomicLoadPkgFlags struct {
    	bits atomic.Int32
    }
    
    // update sets the given flags in af (in addition to any flags already set).
    //
    // update returns the previous flag state so that the caller may determine which
    // flags were newly-set.
    func (af *atomicLoadPkgFlags) update(flags loadPkgFlags) (old loadPkgFlags) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top