Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 221 for Boundary (0.31 sec)

  1. src/vendor/golang.org/x/text/unicode/norm/iter.go

    	i.p = i.rb.nsrc
    }
    
    // Done returns true if there is no more input to process.
    func (i *Iter) Done() bool {
    	return i.p >= i.rb.nsrc
    }
    
    // Next returns f(i.input[i.Pos():n]), where n is a boundary of i.input.
    // For any input a and b for which f(a) == f(b), subsequent calls
    // to Next will return the same segments.
    // Modifying runes are grouped together with the preceding starter, if such a starter exists.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

        mockWebServer.close()
      }
    
      @Test
      fun multipartBody() {
        val multipartBody: MultipartBody = MultipartBody.Builder().build()
        val type: MediaType = multipartBody.type
        val boundary: String = multipartBody.boundary
        val size: Int = multipartBody.size
        val parts: List<MultipartBody.Part> = multipartBody.parts
        val part: MultipartBody.Part = multipartBody.part(0)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. src/encoding/csv/reader_test.go

    	FieldsPerRecord    int
    	LazyQuotes         bool
    	TrimLeadingSpace   bool
    	ReuseRecord        bool
    }
    
    // In these tests, the §, ¶ and ∑ characters in readTest.Input are used to denote
    // the start of a field, a record boundary and the position of an error respectively.
    // They are removed before parsing and are used to verify the position
    // information reported by FieldPos.
    
    var readTests = []readTest{{
    	Name:   "Simple",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 04:25:13 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/ipset/ipset_test.go

    			},
    			set: &IPSet{
    				Name: "net mask boundary 0",
    			},
    			valid: true,
    		},
    		{ // case[31]
    			entry: &Entry{
    				SetType:  HashIPPortNet,
    				IP:       "10.20.30.40",
    				Protocol: ProtocolTCP,
    				Port:     53,
    				Net:      "192.168.3.0/32",
    			},
    			set: &IPSet{
    				Name: "net mask boundary 32",
    			},
    			valid: true,
    		},
    		{ // case[32]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    	i.p = i.rb.nsrc
    }
    
    // Done returns true if there is no more input to process.
    func (i *Iter) Done() bool {
    	return i.p >= i.rb.nsrc
    }
    
    // Next returns f(i.input[i.Pos():n]), where n is a boundary of i.input.
    // For any input a and b for which f(a) == f(b), subsequent calls
    // to Next will return the same segments.
    // Modifying runes are grouped together with the preceding starter, if such a starter exists.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    [source,groovy]
    ----
    include::{snippetsPath}/developingPlugins/testingPlugins/groovy/url-verifier-plugin/src/test/groovy/org/myorg/http/HttpResponseTest.groovy[]
    ----
    
    IMPORTANT: When writing unit tests, it's important to test boundary conditions and various forms of invalid input.
    Try to extract as much logic as possible from classes that use the Gradle API to make it testable as unit tests.
    It will result in maintainable code and faster test execution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. pkg/collateral/control.go

    }
    __istio_quote() {
    	if [[ $1 == \'* || $1 == \"* ]]; then
    		# Leave out first character
    		printf %q "${1:1}"
    	else
    		printf %q "$1"
    	fi
    }
    autoload -U +X bashcompinit && bashcompinit
    # use word boundary patterns for BSD or GNU sed
    LWORD='[[:<:]]'
    RWORD='[[:>:]]'
    if sed --help 2>&1 | grep -q GNU; then
    	LWORD='\<'
    	RWORD='\>'
    fi
    __istio_convert_bash_to_zsh() {
    	sed \
    	-e 's/declare -F/whence -w/' \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/math/BigIntegerMath.java

        // Use floor(log2(num)) + 1 to prevent overflow of multiplication.
        int productBits = LongMath.log2(product, FLOOR) + 1;
        int bits = LongMath.log2(startingNumber, FLOOR) + 1;
        // Check for the next power of two boundary, to save us a CLZ operation.
        int nextPowerOfTwo = 1 << (bits - 1);
    
        // Iteratively multiply the longs as big as they can go.
        for (long num = startingNumber; num <= n; num++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. src/runtime/syscall_windows.go

    	}
    
    	if t.Size_ == 0 {
    		// The Go ABI aligns for zero-sized types.
    		p.dstStackSize = alignUp(p.dstStackSize, uintptr(t.Align_))
    		return
    	}
    
    	// In the C ABI, we're already on a word boundary.
    	// Also, sub-word-sized fastcall register arguments
    	// are stored to the least-significant bytes of the
    	// argument word and all supported Windows
    	// architectures are little endian, so srcStackOffset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api.h

    #endif
    
    #ifdef __cplusplus
    // A workaround to ease conversion to and from numpy objects and
    // TFE_TensorHandle's.
    //
    // TODO(ashankar): Figure out an alternative scheme that precludes the need for
    // these API-boundary breaking methods.
    namespace tensorflow {
    class Tensor;
    }  // namespace tensorflow
    
    TFE_TensorHandle* TFE_NewTensorHandle(const tensorflow::Tensor& t,
                                          TF_Status* status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 22.8K bytes
    - Viewed (0)
Back to top