Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 74 for Identical (0.11 sec)

  1. src/encoding/base32/base32.go

    // HexEncoding is the “Extended Hex Alphabet” defined in RFC 4648.
    // It is typically used in DNS.
    var HexEncoding = NewEncoding("0123456789ABCDEFGHIJKLMNOPQRSTUV")
    
    // WithPadding creates a new encoding identical to enc except
    // with a specified padding character, or NoPadding to disable padding.
    // The padding character must not be '\r' or '\n',
    // must not be contained in the encoding's alphabet,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. cmd/bucket-replication-utils.go

    	ResetStatusesMap           map[string]string                 // map of ARN-> stringified reset id and timestamp for all the targets
    }
    
    // Equal returns true if replication state is identical for version purge statuses and (replica)tion statuses.
    func (rs *ReplicationState) Equal(o ReplicationState) bool {
    	return rs.ReplicaStatus == o.ReplicaStatus &&
    		rs.ReplicationStatusInternal == o.ReplicationStatusInternal &&
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

                }
    
                if (!referencedClassIdAndQualifiedAccessMatch(qualifiedAccessSegments)) {
                    // Referenced ClassId and qualified access (from source PSI) could be not identical if an import alias is involved.
                    // E.g., test.pkg.R.string.hello v.s. coreR.string.hello where test.pkg.R is imported as coreR
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  4. src/runtime/metrics/doc.go

    		to occur with use of SetMemoryLimit. The first GC cycle is cycle
    		1, so a value of 0 indicates that it was never enabled.
    
    	/gc/pauses:seconds
    		Deprecated. Prefer the identical /sched/pauses/total/gc:seconds.
    
    	/gc/scan/globals:bytes
    		The total amount of global variable space that is scannable.
    
    	/gc/scan/heap:bytes
    		The total amount of heap space that is scannable.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/InetAddresses.java

        } catch (UnknownHostException e) {
          throw new AssertionError(e);
        }
      }
    
      /**
       * Returns the string representation of an {@link InetAddress}.
       *
       * <p>For IPv4 addresses, this is identical to {@link InetAddress#getHostAddress()}, but for IPv6
       * addresses, the output follows <a href="http://tools.ietf.org/html/rfc5952">RFC 5952</a> section
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  6. src/internal/trace/summary.go

    					delete(s.syscallingG, id)
    				}
    			}
    
    			// The goroutine hasn't been identified yet. Take the transition stack
    			// and identify the goroutine by the root frame of that stack.
    			// This root frame will be identical for all transitions on this
    			// goroutine, because it represents its immutable start point.
    			if g.Name == "" {
    				stk := st.Stack
    				if stk != NoStack {
    					var frame StackFrame
    					var ok bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

              return true;
            }
          }
        }
        return false;
      }
    };
    
    // Returns true if everything between the two graphs
    // are identical except for name field.
    // Used when comparing graphs after optimization passes,
    // as tensor names may have changed via MLIR constant folding process.
    bool ExpectEqualTensor(const Tensor* tensor, const Tensor* expected_tensor) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder.go

    // requires a single protocol per port, and the DestinationRule issue is slated to move to Sidecar.
    // Note: clusterPort and instance.Endpoint.EndpointPort are identical for standard Services; however,
    // Sidecar.Ingress allows these to be different.
    func (cb *ClusterBuilder) buildInboundCluster(clusterPort int, bind string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/test.go

    	}
    }
    
    // issue 21809
    
    func test21809(t *testing.T) {
    	longVar := C.long(3)
    	typedefVar := C.MySigned_t(4)
    	typedefTypedefVar := C.MySigned2_t(5)
    
    	// all three should be considered identical to `long`
    	if ret := C.takes_long(longVar); ret != 9 {
    		t.Errorf("got %v but expected %v", ret, 9)
    	}
    	if ret := C.takes_long(typedefVar); ret != 16 {
    		t.Errorf("got %v but expected %v", ret, 16)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1/types.go

    	// the driver. It might also use reference counting to share the same volume
    	// instance among different pods if the CSIVolumeSource of those pods is
    	// identical.
    	VolumeLifecycleEphemeral VolumeLifecycleMode = "Ephemeral"
    )
    
    // +genclient
    // +genclient:nonNamespaced
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top