Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 125 for Ne (0.02 sec)

  1. src/main/java/jcifs/smb1/http/ne.css

    Shinsuke Sugaya <******@****.***> 1553287182 +0900
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/MultisetsImmutableEntryTest.java

        assertFalse(entry("foo", 1).equals(null));
      }
    
      public void testEqualsNull() {
        assertEquals(control(NE, 1), entry(NE, 1));
        assertFalse(control(NE, 1).equals(entry(NE, 2)));
        assertFalse(entry(NE, 1).equals(control("bar", 1)));
        assertFalse(entry(NE, 1).equals(new Object()));
        assertFalse(entry(NE, 1).equals(null));
      }
    
      public void testHashCode() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. docs/site-replication/run-multi-site-oidc.sh

    if [ $? -ne 0 ]; then
    	echo "svc account not mirrored, exiting.."
    	exit_1
    fi
    
    ./mc admin user svcacct info minio2 testsvc
    if [ $? -ne 0 ]; then
    	echo "svc account not mirrored, exiting.."
    	exit_1
    fi
    
    ./mc admin user svcacct rm minio1 testsvc
    if [ $? -ne 0 ]; then
    	echo "removing svc account failed, exiting.."
    	exit_1
    fi
    
    sleep 10
    ./mc admin user svcacct info minio2 testsvc
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. docs/distributed/decom-encrypted-sse-s3.sh

    if [ $user_count -ne $expanded_user_count ]; then
    	echo "BUG: original user count differs from expanded setup"
    	exit 1
    fi
    
    if [ $policy_count -ne $expanded_policy_count ]; then
    	echo "BUG: original policy count  differs from expanded setup"
    	exit 1
    fi
    
    ./mc version info myminio/versioned | grep -q "versioning is enabled"
    ret=$?
    if [ $ret -ne 0 ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/node_expander.go

    // it returns false.
    func (ne *NodeExpander) runPreCheck() bool {
    	ne.pvcStatusCap = ne.pvc.Status.Capacity[v1.ResourceStorage]
    	ne.pvCap = ne.pv.Spec.Capacity[v1.ResourceStorage]
    
    	allocatedResourceStatus := ne.pvc.Status.AllocatedResourceStatuses
    	if currentStatus, ok := allocatedResourceStatus[v1.ResourceStorage]; ok {
    		ne.resizeStatus = currentStatus
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. src/internal/bytealg/equal_arm.s

    	B.LT	byte_loop	// length < 4
    	AND	$3, R0, R6
    	CMP	$0, R6
    	B.NE	byte_loop	// unaligned a, use byte-wise compare (TODO: try to align a)
    	AND	$3, R2, R6
    	CMP	$0, R6
    	B.NE	byte_loop	// unaligned b, use byte-wise compare
    	AND	$0xfffffffc, R1, R6
    	// length >= 4
    chunk4_loop:
    	MOVW.P	4(R0), R4
    	MOVW.P	4(R2), R5
    	CMP	R4, R5
    	B.NE	notequal
    	CMP	R0, R6
    	B.NE	chunk4_loop
    	CMP	R0, R1
    	B.EQ	equal		// reached the end
    byte_loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 00:56:36 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  7. docs/distributed/decom-compressed-sse-s3.sh

    if [ $user_count -ne $expanded_user_count ]; then
    	echo "BUG: original user count differs from expanded setup"
    	exit 1
    fi
    
    if [ $policy_count -ne $expanded_policy_count ]; then
    	echo "BUG: original policy count  differs from expanded setup"
    	exit 1
    fi
    
    ./mc version info myminio/versioned | grep -q "versioning is enabled"
    ret=$?
    if [ $ret -ne 0 ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. docs/distributed/decom-encrypted-kes.sh

    if [ "$user_count" -ne "$expanded_user_count" ]; then
    	echo "BUG: original user count differs from expanded setup"
    	exit 1
    fi
    
    if [ "$policy_count" -ne "$expanded_policy_count" ]; then
    	echo "BUG: original policy count  differs from expanded setup"
    	exit 1
    fi
    
    ./mc version info myminio/versioned | grep -q "versioning is enabled"
    ret=$?
    if [ $ret -ne 0 ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/armv6.s

    	ADDF	F0, F1, F2    // 002a31ee
    	ADDD.EQ	F3, F4, F5    // 035b340e
    	ADDF.NE	F0, F2        // 002a321e
    	ADDD	F3, F5        // 035b35ee
    	SUBF	F0, F1, F2    // 402a31ee
    	SUBD.EQ	F3, F4, F5    // 435b340e
    	SUBF.NE	F0, F2        // 402a321e
    	SUBD	F3, F5        // 435b35ee
    	MULF	F0, F1, F2    // 002a21ee
    	MULD.EQ	F3, F4, F5    // 035b240e
    	MULF.NE	F0, F2        // 002a221e
    	MULD	F3, F5        // 035b25ee
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 21 16:30:51 UTC 2017
    - 4.6K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/kube/templates/deployment.yaml

    {{- end }}
    {{- if $.DisableAutomountSAToken }}
          automountServiceAccountToken: false
    {{- end}}
    {{- if ne $.ImagePullSecretName "" }}
          imagePullSecrets:
          - name: {{ $.ImagePullSecretName }}
    {{- end }}
          containers:
    {{- if and
      (ne (index $subset.Annotations "sidecar.istio.io/inject") "false")
      (ne (index $subset.Annotations "inject.istio.io/templates") "grpc")
      ($.OverlayIstioProxy)
    }}
          - name: istio-proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top