Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for _ignored (0.2 sec)

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

                if (edgeState == incomingEdge) {
                    // These are my own constraints. I can not treat them as inherited,
                    // because that assumes that they are defined in another node as well and might be ignored.
                    filterOwn = true;
                    continue;
                }
                ComponentState targetComponent = edgeState.getTargetComponent();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  2. cmd/iam.go

    		return true
    	})
    
    	return entityKeysInStorage
    }
    
    // NormalizeLDAPMappingImport - validates the LDAP policy mappings. Keys in the
    // given map may not correspond to LDAP DNs - these keys are ignored.
    //
    // For validated mappings, it updates the key in the given map to be in
    // normalized form.
    func (sys *IAMSys) NormalizeLDAPMappingImport(ctx context.Context, isGroup bool,
    	policyMap map[string]MappedPolicy,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    				pod := obj.(*example.Pod)
    				return nil, fields.Set{"metadata.name": pod.Name}, nil
    			},
    		}
    	}
    	options := storage.ListOptions{
    		// Limit is ignored when ResourceVersion is set to 0.
    		// Set it to consistent read.
    		ResourceVersion: "",
    		Predicate:       pred(1, ""),
    		Recursive:       true,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

        Configure_Containerd_CniNetworking
    }
    
    # Obtain the host dns conf and save it to a file so that kubelet/CNI
    # can use it to configure dns suffix search list for pods.
    # The value of DNS server is ignored right now because the pod will
    # always only use cluster DNS service, but for consistency, we still
    # parsed them here in the same format as Linux resolv.conf.
    # This function must be called after Configure-HostNetworkingService.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. cmd/iam-store.go

    				}
    			}
    		}
    	}
    
    	// It is ok to ignore deletion error on the mapped policy
    	store.deleteMappedPolicy(ctx, accessKey, userType, false)
    	cache.iamUserPolicyMap.Delete(accessKey)
    
    	err := store.deleteUserIdentity(ctx, accessKey, userType)
    	if err == errNoSuchUser {
    		// ignore if user is already deleted.
    		err = nil
    	}
    	delete(cache.iamUsersMap, accessKey)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  6. cmd/test-utils_test.go

    const iso8601TimeFormat = "2006-01-02T15:04:05.000Z"
    
    // Excerpts from @lsegal - https://github.com/aws/aws-sdk-js/issues/659#issuecomment-120477258
    //
    //	User-Agent:
    //
    //	    This is ignored from signing because signing this causes problems with generating pre-signed URLs
    //	    (that are executed by other agents) or when customers pass requests through proxies, which may
    //	    modify the user-agent.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  7. src/time/format.go

    // and thus may not sort correctly once formatted.
    //
    // Most programs can use one of the defined constants as the layout passed to
    // Format or Parse. The rest of this comment can be ignored unless you are
    // creating a custom layout string.
    //
    // To define your own format, write down what the reference time would look like
    // formatted your way; see the values of constants like [ANSIC], [StampMicro] or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    func (c *Cacher) Delete(
    	ctx context.Context, key string, out runtime.Object, preconditions *storage.Preconditions,
    	validateDeletion storage.ValidateObjectFunc, _ runtime.Object) error {
    	// Ignore the suggestion and try to pass down the current version of the object
    	// read from cache.
    	if elem, exists, err := c.watchCache.GetByKey(key); err != nil {
    		klog.Errorf("GetByKey returned error: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    		cgroupRoots = append(cgroupRoots, kubeletCgroup)
    	}
    
    	if s.RuntimeCgroups != "" {
    		// RuntimeCgroups is optional, so ignore if it isn't specified
    		cgroupRoots = append(cgroupRoots, s.RuntimeCgroups)
    	}
    
    	if s.SystemCgroups != "" {
    		// SystemCgroups is optional, so ignore if it isn't specified
    		cgroupRoots = append(cgroupRoots, s.SystemCgroups)
    	}
    
    	if kubeDeps.CAdvisorInterface == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion.go

    		return nil
    	}
    	res := map[string]string{}
    	for _, e := range hl {
    		k := strings.ToLower(string(e.Name))
    		if _, f := res[k]; f {
    			// "Subsequent entries with an equivalent header name MUST be ignored"
    			continue
    		}
    		res[k] = e.Value
    	}
    	return res
    }
    
    func createMirrorFilter(ctx configContext, filter *k8s.HTTPRequestMirrorFilter, ns string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top