Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 908 for haninge (0.33 sec)

  1. src/html/template/js_test.go

    	}
    }
    
    func BenchmarkJSValEscaperWithStr(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		jsValEscaper("The <i>quick</i>,\r\n<span style='color:brown'>brown</span> fox jumps\u2028over the <canine class=\"lazy\">dog</canine>")
    	}
    }
    
    func BenchmarkJSValEscaperWithStrNoSpecials(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		jsValEscaper("The quick, brown fox jumps over the lazy dog")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. pilot/pkg/status/distribution/reporter_test.go

    	}
    	// mark each fake connection as having acked version 1 of all resources
    	for _, con := range connections {
    		r.processEvent(con, "", firstNoncePrefix)
    	}
    	// modify one resource to version 2
    	resources[1].Generation = int64(2)
    	myResources[1].Generation = "2"
    	// notify the ledger of the new version
    	r.AddInProgressResource(*resources[1])
    	// mark only one connection as having acked version 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/go/doc/testdata/testing.1.golden

    	func (c *B) Error(args ...any)
    
    	// Errorf is equivalent to Logf() followed by Fail(). 
    	func (c *B) Errorf(format string, args ...any)
    
    	// Fail marks the function as having failed but continues ...
    	func (c *B) Fail()
    
    	// FailNow marks the function as having failed and stops its ...
    	func (c *B) FailNow()
    
    	// Failed reports whether the function has failed. 
    	func (c *B) Failed() bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *          all is well.
     */
    
    CU_EXPORT 
    CU_pSuite CU_get_suite(const char* strName);
    /**<
     *  Retrieves the suite having the specified name.  
     *  Searches the active test registry and returns a pointer to the 1st 
     *  suite found.  NULL is returned if no suite having the specified name 
     *  is found.  In addition, the framework error state is set to CUE_NOREGISTRY 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/99-minor/os/33357.md

    The [Stat] function now sets the [ModeSocket] bit for
    files that are Unix sockets on Windows. These files are identified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 178 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight_test.go

    			}))
    		}
    		handler.ServeHTTP(w, r)
    	})
    }
    
    // Tests that MaxInFlightLimit works, i.e.
    //   - "long" requests such as proxy or watch, identified by regexp are not accounted despite
    //     hanging for the long time,
    //   - "short" requests are correctly accounted, i.e. there can be only size of channel passed to the
    //     constructor in flight at any given moment,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  7. releasenotes/notes/25832.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - 25832
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 11 23:04:11 UTC 2022
    - 236 bytes
    - Viewed (0)
  8. releasenotes/notes/45549.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    issue:
    - 45546
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 04:02:10 UTC 2023
    - 204 bytes
    - Viewed (0)
  9. src/internal/testenv/testenv_notunix.go

    // license that can be found in the LICENSE file.
    
    //go:build windows || plan9 || (js && wasm) || wasip1
    
    package testenv
    
    import (
    	"errors"
    	"io/fs"
    	"os"
    )
    
    // Sigquit is the signal to send to kill a hanging subprocess.
    // On Unix we send SIGQUIT, but on non-Unix we only have os.Kill.
    var Sigquit = os.Kill
    
    func syscallIsNotSupported(err error) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 05:22:00 UTC 2023
    - 550 bytes
    - Viewed (0)
  10. src/crypto/internal/boring/bcache/stub.s

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file is here to silence an error about registerCache not having a body.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 27 11:50:31 UTC 2022
    - 286 bytes
    - Viewed (0)
Back to top