Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 213 for experts (0.23 sec)

  1. pkg/controller/statefulset/stateful_set_control.go

    // considered to be live. Non-live revisions are deleted, starting with the revision with the lowest Revision, until
    // only RevisionHistoryLimit revisions remain. If the returned error is nil the operation was successful. This method
    // expects that revisions is sorted when supplied.
    func (ssc *defaultStatefulSetControl) truncateHistory(
    	set *apps.StatefulSet,
    	pods []*v1.Pod,
    	revisions []*apps.ControllerRevision,
    	current *apps.ControllerRevision,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/abi.go

    func (s *SymABIs) GenABIWrappers() {
    	// For cgo exported symbols, we tell the linker to export the
    	// definition ABI to C. That also means that we don't want to
    	// create ABI wrappers even if there's a linkname.
    	//
    	// TODO(austin): Maybe we want to create the ABI wrappers, but
    	// ensure the linker exports the right ABI definition under
    	// the unmangled name?
    	cgoExports := make(map[string][]*[]string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. pkg/kubelet/pleg/evented.go

    			}
    			// Preserve the pod IP across cache updates if the new IP is empty.
    			// When a pod is torn down, kubelet may race with PLEG and retrieve
    			// a pod status after network teardown, but the kubernetes API expects
    			// the completed pod's IP to be available after the pod is dead.
    			status.IPs = e.getPodIPs(podID, status)
    		}
    
    		e.updateRunningPodMetric(status)
    		e.updateRunningContainerMetric(status)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/go/ast/filter.go

    			}
    			return true
    		}
    	case *TypeSpec:
    		if f(s.Name.Name) {
    			if export {
    				filterType(s.Type, f, export)
    			}
    			return true
    		}
    		if !export {
    			// For general filtering (not just exports),
    			// filter type even if name is not filtered
    			// out.
    			// If the type contains filtered elements,
    			// keep the declaration.
    			return filterType(s.Type, f, export)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package encryptionconfig
    
    import (
    	"context"
    	"crypto/aes"
    	"crypto/cipher"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  6. src/net/http/pprof/pprof.go

    //
    // Or to look at the holders of contended mutexes, after calling
    // [runtime.SetMutexProfileFraction] in your program:
    //
    //	go tool pprof http://localhost:6060/debug/pprof/mutex
    //
    // The package also exports a handler that serves execution trace data
    // for the "go tool trace" command. To collect a 5-second execution trace:
    //
    //	curl -o trace.out http://localhost:6060/debug/pprof/trace?seconds=5
    //	go tool trace trace.out
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/ProducerTaskCommandLineOrderIntegrationTest.groovy

            writeAllFiles()
    
            expect:
            2.times {
                args '--parallel', '--max-workers=2'
                succeeds(generate.path, cleanFooLocal.path, dist.path)
    
                // The user expects:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-kubeapiserver.sh

    # 1. Writing encryption provider config to disk
    # 2. Adding encryption-provider-config flag to kube-apiserver
    # 3. Add kms-socket-vol and kms-socket-vol-mnt to enable communication with kms-plugin (if requested)
    #
    # Expects parameters:
    # $1 - path to kube-apiserver template
    # $2 - kube-apiserver startup flags (must be passed by reference)
    #
    # Assumes vars (supplied via kube-env):
    # ENCRYPTION_PROVIDER_CONFIG
    # CLOUD_KMS_INTEGRATION
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    include::sample[dir="snippets/providers/services/groovy",files="settings.gradle[tags=build-layout-inject]"]
    ====
    
    This code defines a `MyBuildLayoutPlugin` plugin that implements the `Plugin` interface for the `Settings` type.
    The plugin expects a `BuildLayout` instance to be injected into its constructor using the `@Inject` annotation.
    
    [[providerfactory]]
    == 4. `ProviderFactory`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/issues_test.go

    	}
    }
    
    func TestIssue59831(t *testing.T) {
    	// Package a exports a type S with an unexported method m;
    	// the tests check the error messages when m is not found.
    	const asrc = `package a; type S struct{}; func (S) m() {}`
    	apkg := mustTypecheck(asrc, nil, nil)
    
    	// Package b exports a type S with an exported method m;
    	// the tests check the error messages when M is not found.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top