Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 294 for rootCA (0.48 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandler.java

                }
                if (rootId != null && candidatesForConflict.size() > 1) {
                    // This is a special case for backwards compatibility: it is possible to have
                    // a cycle where the root component depends on a library which transitively
                    // depends on a different version of the root module. In this case, we effectively
                    // allow 2 modules to have the same capability, so we filter the nodes coming
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. pkg/volume/portworx/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - saad-ali
    reviewers:
      - saad-ali
    emeritus_approvers:
      - lpabon
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 15 15:34:02 UTC 2021
    - 141 bytes
    - Viewed (0)
  3. pkg/util/iptree/iptree.go

    	}
    
    	return false
    }
    
    // DeletePrefix delete the exact prefix and return true if it existed.
    func (t *Tree[T]) DeletePrefix(prefix netip.Prefix) bool {
    	root := t.rootV4
    	if prefix.Addr().Is6() {
    		root = t.rootV6
    	}
    	var parent *node[T]
    	n := root
    	// bit position is given by the mask bits
    	bitPosition := 0
    	// mask the address
    	address := prefix.Masked().Addr()
    	mask := prefix.Bits()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/container_manager_linux_test.go

    	mockCadvisor := cadvisortest.NewMockInterface(mockCtrl)
    	rootfs := cadvisorapiv2.FsInfo{
    		Capacity: 8000,
    	}
    	mockCadvisor.EXPECT().RootFsInfo().Return(rootfs, nil)
    	mockCadvisorError := cadvisortest.NewMockInterface(mockCtrlError)
    	mockCadvisorError.EXPECT().RootFsInfo().Return(cadvisorapiv2.FsInfo{}, errors.New("Unable to get rootfs data from cAdvisor interface"))
    	cases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. pkg/volume/nfs/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - saad-ali
      - jingxu97
    reviewers:
      - sjenning
      - saad-ali
      - jsafrane
      - jingxu97
      - msau42
    emeritus_approvers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 15 15:34:02 UTC 2021
    - 193 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/webApplication/customized/groovy/src/rootContent/root.txt

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/MetadataArtifactResolveTestFixture.groovy

            buildFile << """
    task verify {
        doLast {
            def rootId = configurations.${config}.incoming.resolutionResult.root.id
            assert rootId instanceof ProjectComponentIdentifier
    
            def result = dependencies.createArtifactResolutionQuery()
                .forComponents(rootId)
                .withArtifacts($requestedComponent, $requestedArtifact)
                .execute()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. pkg/volume/fc/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - saad-ali
    reviewers:
      - saad-ali
      - jsafrane
      - jingxu97
      - msau42
    emeritus_approvers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 15 15:34:02 UTC 2021
    - 167 bytes
    - Viewed (0)
  9. istioctl/cmd/root.go

    const (
    	FlagCharts = "charts"
    )
    
    // ConfigAndEnvProcessing uses spf13/viper for overriding CLI parameters
    func ConfigAndEnvProcessing() error {
    	configPath := filepath.Dir(root.IstioConfig)
    	baseName := filepath.Base(root.IstioConfig)
    	configType := filepath.Ext(root.IstioConfig)
    	configName := baseName[0 : len(baseName)-len(configType)]
    	if configType != "" {
    		configType = configType[1:]
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. operator/cmd/operator/root.go

    // limitations under the License.
    
    package main
    
    import (
    	"flag"
    
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/pkg/collateral"
    	"istio.io/istio/pkg/version"
    )
    
    // getRootCmd returns the root of the cobra command-tree.
    func getRootCmd(args []string) *cobra.Command {
    	rootCmd := &cobra.Command{
    		Use:   "operator",
    		Short: "The Istio operator.",
    		Args:  cobra.ExactArgs(0),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top