Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 156 for Managed (0.12 sec)

  1. pkg/proxy/util/linebuffer.go

    	lines int
    }
    
    // NewDiscardLineBuffer returns a dummy LineBuffer that counts the number of writes but
    // throws away the data. (This is used for iptables proxy partial syncs, to keep track of
    // how many rules we managed to avoid having to sync.)
    func NewDiscardLineBuffer() LineBuffer {
    	return &discardLineBuffer{}
    }
    
    // Write is part of LineBuffer
    func (buf *discardLineBuffer) Write(args ...interface{}) {
    	buf.lines++
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/composition/DefaultDependencyManagementImporter.java

                                    .setMessage("Ignored POM import for: " + toString(dependency) + " as already imported "
                                            + toString(present) + ". Add the conflicting managed dependency directly "
                                            + "to the dependencyManagement section of the POM."));
                        }
                    }
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/DefaultBuildController.java

        }
    
        private void assertCanQuery() {
            if (!workerThreadRegistry.isWorkerThread()) {
                throw new IllegalStateException("A build controller cannot be used from a thread that is not managed by Gradle.");
            }
        }
    
        @Override
        public void dispatch(Object value) {
            SerializedPayload serializedModel = payloadSerializer.serialize(value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:14 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. internal/cachevalue/cache.go

    	// ttl for a cached value.
    	ttl time.Duration
    
    	opts Opts
    
    	// Once can be used to initialize values for lazy initialization.
    	// Should be set before calling Get().
    	Once sync.Once
    
    	// Managed values.
    	val          atomic.Pointer[T]
    	lastUpdateMs atomic.Int64
    	updating     sync.Mutex
    }
    
    // New allocates a new cached value instance. Tt must be initialized with
    // `.TnitOnce`.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 12:50:46 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. cni/pkg/config/config.go

    	// init container termination message and exit code.
    	SidecarAnnotation  string
    	InitContainerName  string
    	InitTerminationMsg string
    	InitExitCode       int
    
    	// Label and field selectors to select pods managed by race repair.
    	LabelSelectors string
    	FieldSelectors string
    }
    
    func (c InstallConfig) String() string {
    	var b strings.Builder
    	b.WriteString("CNINetDir: " + c.CNINetDir + "\n")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              sudo cp /var/run/secrets/istio/bootstrap/*.env /var/lib/istio/envoy/
              sudo cp /var/run/secrets/istio/bootstrap/mesh.yaml /etc/istio/config/mesh
    
              # don't overwrite /etc/hosts since it's managed by kubeproxy
              #sudo sh -c 'cat /var/run/secrets/istio/bootstrap/hosts >> /etc/hosts'
    
              # since we're not overwriting /etc/hosts on k8s, verify that istiod hostname in /etc/hosts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. pkg/volume/git_repo/git_repo.go

    	opts     volume.VolumeOptions
    }
    
    var _ volume.Mounter = &gitRepoVolumeMounter{}
    
    func (b *gitRepoVolumeMounter) GetAttributes() volume.Attributes {
    	return volume.Attributes{
    		ReadOnly:       false,
    		Managed:        true,
    		SELinuxRelabel: true, // xattr change should be okay, TODO: double check
    	}
    }
    
    // SetUp creates new directory and clones a git repo.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. pkg/volume/nfs/nfs.go

    	mountOptions []string
    }
    
    var _ volume.Mounter = &nfsMounter{}
    
    func (nfsMounter *nfsMounter) GetAttributes() volume.Attributes {
    	return volume.Attributes{
    		ReadOnly:       nfsMounter.readOnly,
    		Managed:        false,
    		SELinuxRelabel: false,
    	}
    }
    
    // SetUp attaches the disk and bind mounts to the volume path.
    func (nfsMounter *nfsMounter) SetUp(mounterArgs volume.MounterArgs) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. pkg/volume/secret/secret.go

    }
    
    var _ volume.Mounter = &secretVolumeMounter{}
    
    func (sv *secretVolume) GetAttributes() volume.Attributes {
    	return volume.Attributes{
    		ReadOnly:       true,
    		Managed:        true,
    		SELinuxRelabel: true,
    	}
    }
    
    func (b *secretVolumeMounter) SetUp(mounterArgs volume.MounterArgs) error {
    	return b.SetUpAt(b.GetPath(), mounterArgs)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/net/interface.go

    }
    
    // An ipv6ZoneCache represents a cache holding partial network
    // interface information. It is used for reducing the cost of IPv6
    // addressing scope zone resolution.
    //
    // Multiple names sharing the index are managed by first-come
    // first-served basis for consistency.
    type ipv6ZoneCache struct {
    	sync.RWMutex                // guard the following
    	lastFetched  time.Time      // last time routing information was fetched
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top