Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 189 for _ignored (0.21 sec)

  1. 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)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            ex.message == "Cannot add a null element to a property of type ${type().simpleName}."
        }
    
        def "ignores convention after element added"() {
            expect:
            property.add("a")
            property.convention(["other"])
            assertValueIs(["a"])
        }
    
        def "ignores convention after element added using provider"() {
            expect:
            property.add(Providers.of("a"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K 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. plugin/pkg/admission/limitranger/admission_test.go

    	if err != nil {
    		t.Errorf("Should have ignored calls to any subresource of pod %v", err)
    	}
    
    }
    
    func TestLimitRangerAdmitPod(t *testing.T) {
    	limitRange := validLimitRangeNoDefaults()
    	mockClient := newMockClientForTest([]corev1.LimitRange{limitRange})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    		// If this is a namespace local DR in the same namespace, this must be meant for this proxy, so we do not
    		// need to worry about overriding other DRs with *.local type rules here. If we ignore this, then exportTo=. in
    		// root namespace would always be ignored
    		if _, drs, ok := MostSpecificHostMatch(service.Hostname,
    			ps.destinationRuleIndex.rootNamespaceLocal.specificDestRules,
    			ps.destinationRuleIndex.rootNamespaceLocal.wildcardDestRules,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. 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)
  7. src/crypto/tls/conn.go

    func (hc *halfConn) decrypt(record []byte) ([]byte, recordType, error) {
    	var plaintext []byte
    	typ := recordType(record[0])
    	payload := record[recordHeaderLen:]
    
    	// In TLS 1.3, change_cipher_spec messages are to be ignored without being
    	// decrypted. See RFC 8446, Appendix D.4.
    	if hc.version == VersionTLS13 && typ == recordTypeChangeCipherSpec {
    		return payload, typ, nil
    	}
    
    	paddingGood := byte(255)
    	paddingLen := 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      if (n.assigned_device_name().empty()) {
        *ignore = false;
        return absl::OkStatus();
      }
    
      TF_ASSIGN_OR_RETURN(
          const XlaOpRegistry::DeviceRegistration* registration,
          device_info_cache->GetCompilationDevice(n.assigned_device_name()));
    
      if (!registration) {
        *ignore = true;
      } else {
        *ignore = registration->cluster_resource_variable_ops_unsafely;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    //
    // innermost indicates that this is the first resolve on this stack. If
    // innermost is set, isSyscall indicates that the PC/SP was retrieved from
    // gp.syscall*; this is otherwise ignored.
    //
    // On entry, u.frame contains:
    //   - fn is the running function.
    //   - pc is the PC in the running function.
    //   - sp is the stack pointer at that program counter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/encoding/json/decode_test.go

    	Embed0c  `json:"-"`           // ignored
    	Loop
    	Embed0p // has Point with X, Y, used
    	Embed0q // has Point with Z, used
    	embed   // contains exported field
    }
    
    type Embed0 struct {
    	Level1a int // overridden by Embed0a's Level1a with json tag
    	Level1b int // used because Embed0a's Level1b is renamed
    	Level1c int // used because Embed0a's Level1c is ignored
    	Level1d int // annihilated by Embed0a's Level1d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
Back to top