Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,367 for prefixof (0.12 sec)

  1. src/vendor/golang.org/x/crypto/cryptobyte/builder.go

    }
    
    // BuilderContinuation is a continuation-passing interface for building
    // length-prefixed byte sequences. Builder methods for length-prefixed
    // sequences (AddUint8LengthPrefixed etc) will invoke the BuilderContinuation
    // supplied to them. The child builder passed to the continuation can be used
    // to build the content of the length-prefixed sequence. For example:
    //
    //	parent := cryptobyte.NewBuilder()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. src/crypto/ed25519/ed25519.go

    	return signature
    }
    
    // Domain separation prefixes used to disambiguate Ed25519/Ed25519ph/Ed25519ctx.
    // See RFC 8032, Section 2 and Section 5.1.
    const (
    	// domPrefixPure is empty for pure Ed25519.
    	domPrefixPure = ""
    	// domPrefixPh is dom2(phflag=1) for Ed25519ph. It must be followed by the
    	// uint8-length prefixed context.
    	domPrefixPh = "SigEd25519 no Ed25519 collisions\x01"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/net/netip/netip_test.go

    			t.Fatal(err)
    		}
    		if prefix != prefix2 {
    			t.Fatalf("got %v; want %v", prefix2, prefix)
    		}
    	}
    
    	// Cannot unmarshal from unexpected lengths.
    	for _, n := range []int{3, 6} {
    		var prefix2 Prefix
    		if err := prefix2.UnmarshalBinary(bytes.Repeat([]byte{1}, n)); err == nil {
    			t.Fatalf("unmarshaled from unexpected length %d", n)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  4. docs/bucket/versioning/README.md

            <Status>Enabled</Status>
            <ExcludedPrefixes>
              <Prefix>*/_temporary</Prefix>
            </ExcludedPrefixes>
            <ExcludedPrefixes>
              <Prefix>*/__magic</Prefix>
            </ExcludedPrefixes>
            <ExcludedPrefixes>
              <Prefix>*/_staging</Prefix>
            </ExcludedPrefixes>
    
            <!-- .. up to 10 prefixes in all -->
    </VersioningConfiguration>
    ```
    
    ### Features
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicator.java

                String prefix = deduplicatedName.substring(0, deduplicatedName.lastIndexOf(originalName));
                if (prefix.isEmpty()) {
                    return deduplicatedName;
                }
    
                Splitter splitter = Splitter.on('-').omitEmptyStrings();
                List<String> prefixParts = Lists.newArrayList(splitter.split(prefix));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            configurationCacheRun "help"
    
            then:
            outputContains '2!'
            outputContains "because the set of environment variables prefixed by '$ENV_PROJECT_PROPERTIES_PREFIX' has changed."
            configurationCache.assertStateStored()
    
            when: 'the set of prefixed environment variables changes'
            executer.withEnvironmentVars([
                (ENV_PROJECT_PROPERTIES_PREFIX + 'unused'): 1,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. internal/bucket/versioning/versioning.go

    	return v.Status == Enabled
    }
    
    // Versioned returns if 'prefix' has versioning enabled or suspended.
    func (v Versioning) Versioned(prefix string) bool {
    	return v.PrefixEnabled(prefix) || v.PrefixSuspended(prefix)
    }
    
    // PrefixEnabled - returns true if versioning is enabled at the bucket and given
    // prefix, false otherwise.
    func (v Versioning) PrefixEnabled(prefix string) bool {
    	if v.Status != Enabled {
    		return false
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. cmd/object-api-datatypes_gen.go

    					return
    				}
    			}
    		case "Prefixes":
    			var zb0003 uint32
    			zb0003, bts, err = msgp.ReadArrayHeaderBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "Prefixes")
    				return
    			}
    			if cap(z.Prefixes) >= int(zb0003) {
    				z.Prefixes = (z.Prefixes)[:zb0003]
    			} else {
    				z.Prefixes = make([]string, zb0003)
    			}
    			for za0002 := range z.Prefixes {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  9. src/os/path_windows.go

    		} else {
    			// Starts with //
    			isUNC = true
    		}
    	}
    	var prefix []uint16
    	if isUNC {
    		// UNC path, prepend the \\?\UNC\ prefix.
    		prefix = []uint16{'\\', '\\', '?', '\\', 'U', 'N', 'C', '\\'}
    	} else if isDevice {
    		// Don't add the extended prefix to device paths, as it would
    		// change its meaning.
    	} else {
    		prefix = []uint16{'\\', '\\', '?', '\\'}
    	}
    
    	p, err := syscall.UTF16FromString(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

      // suffix are skipped by the caller and will not be added to the graph.
      auto prefixes = GlobalOpPrefixes();
      if (std::none_of(prefixes->begin(), prefixes->end(), [&](std::string prefix) {
            return op_name.consume_front(prefix);
          })) {
        return errors::FailedPrecondition("op node '", op_name.str(),
                                          "' was not a TF op!");
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top