Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 612 for shared (0.27 sec)

  1. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    			}
    		})
    	}
    }
    
    func TestPatchHTTPRoute(t *testing.T) {
    	sharedVHostRoutes := []*route.Route{
    		{
    			Name: "shared",
    			Action: &route.Route_Route{
    				Route: &route.RouteAction{
    					PrefixRewrite: "/shared",
    				},
    			},
    		},
    	}
    	type args struct {
    		patchContext       networking.EnvoyFilter_PatchContext
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. cni/pkg/install/install.go

    	// and we harm no one by doing so.
    	copiedFiles, err := copyBinaries(in.cfg.CNIBinSourceDir, in.cfg.CNIBinTargetDirs)
    	if err != nil {
    		cniInstalls.With(resultLabel.Value(resultCopyBinariesFailure)).Increment()
    		return copiedFiles, fmt.Errorf("copy binaries: %v", err)
    	}
    
    	// Install kubeconfig (if needed) - we write/update this in the shared node CNI netdir,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/go.go

    // go-specific code shared across loaders (5l, 6l, 8l).
    
    package ld
    
    import (
    	"cmd/internal/bio"
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"debug/elf"
    	"encoding/json"
    	"fmt"
    	"io"
    	"os"
    	"sort"
    	"strconv"
    	"strings"
    )
    
    // go-specific code shared across loaders (5l, 6l, 8l).
    
    // TODO:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. pkg/registry/core/pod/storage/storage.go

    func (r *BindingREST) New() runtime.Object {
    	return &api.Binding{}
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *BindingREST) Destroy() {
    	// Given that underlying store is shared with REST,
    	// we don't destroy it here explicitly.
    }
    
    var _ = rest.NamedCreater(&BindingREST{})
    var _ = rest.SubresourceObjectMetaPreserver(&BindingREST{})
    
    // Create ensures a pod is bound to a specific host.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. pkg/volume/volume.go

    	Inodes *resource.Quantity
    
    	// InodesFree represent the inodes available for the volume.  For Volumes that share
    	// a filesystem with the host (e.g. emptydir, hostpath), this is the free inodes
    	// on the underlying storage, and is shared with host processes and other volumes
    	InodesFree *resource.Quantity
    
    	// Normal volumes are available for use and operating optimally.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    // among all the phases included in the workflow.
    // The method will receive in input the cmd that triggers the Runner (only if the runner is BindToCommand)
    func (e *Runner) SetDataInitializer(builder func(cmd *cobra.Command, args []string) (RunData, error)) {
    	e.runDataInitializer = builder
    }
    
    // InitData triggers the creation of runtime data shared among all the phases included in the workflow.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  7. src/os/signal/doc.go

    When Go code is built with options like -buildmode=c-shared, it will
    be run as part of an existing non-Go program. The non-Go code may
    have already installed signal handlers when the Go code starts (that
    may also happen in unusual cases when using cgo or SWIG; in that case,
    the discussion here applies).  For -buildmode=c-archive the Go runtime
    will initialize signals at global constructor time.  For
    -buildmode=c-shared the Go runtime will initialize signals when the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller.go

    	eventRecorder    record.EventRecorder
    
    	// endpointsLister is able to list/get endpoints and is populated by the
    	// shared informer passed to NewController.
    	endpointsLister corelisters.EndpointsLister
    	// endpointsSynced returns true if the endpoints shared informer has been
    	// synced at least once. Added as a member to the struct to allow injection
    	// for testing.
    	endpointsSynced cache.InformerSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 23:18:31 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

     *
     * @param binaryRoots Binary roots of the binary libraries that are specific to [project].
     * @param sharedBinaryRoots Binary roots that are shared between multiple different projects. This allows Kotlin tests to cache stubs for
     * shared libraries like the Kotlin stdlib.
     */
    class KotlinStandaloneDeclarationProviderFactory(
        private val project: Project,
        sourceKtFiles: Collection<KtFile>,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set.go

    	// podLister is able to list/get pods from a shared informer's store
    	podLister corelisters.PodLister
    	// podListerSynced returns true if the pod shared informer has synced at least once
    	podListerSynced cache.InformerSynced
    	// setLister is able to list/get stateful sets from a shared informer's store
    	setLister appslisters.StatefulSetLister
    	// setListerSynced returns true if the stateful set shared informer has synced at least once
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top