Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,776 for seem (0.09 sec)

  1. pkg/registry/core/service/ipallocator/controller/repair.go

    			case nil:
    				actualStored := storedByFamily[family]
    				if actualStored.Has(ip) {
    					// remove it from the old set, so we can find leaks
    					actualStored.Release(ip)
    				} else {
    					// cluster IP doesn't seem to be allocated
    					clusterIPRepairIPErrors.WithLabelValues("repair").Inc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. src/net/timeout_test.go

    	switch runtime.GOOS {
    	case "openbsd", "netbsd":
    		// NetBSD and OpenBSD seem to be unable to reliably hit deadlines even when
    		// the absolute durations are long.
    		// In https://build.golang.org/log/c34f8685d020b98377dd4988cd38f0c5bd72267e,
    		// we observed that an openbsd-amd64-68 builder took 4.090948779s for a
    		// 2.983020682s timeout (37.1% overhead).
    		// (See https://go.dev/issue/50189 for further detail.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  3. src/image/gif/reader_test.go

    	//
    	// This index, 3, is out of range of the global palette and there is no
    	// local palette in the subsequent image descriptor. This is an error
    	// according to the spec, but Firefox and Google Chrome seem OK with this.
    	//
    	// See golang.org/issue/15059.
    	b.WriteString("\x21\xf9\x04\x01\x00\x00\x03\x00")
    
    	// Image descriptor: 2x1, no local palette, and 2-bit LZW literals.
    	b.WriteString("\x2c\x00\x00\x00\x00\x02\x00\x01\x00\x00\x02")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheProblemsFixture.groovy

            def problemPattern = Pattern.compile("- (.*)")
            def docPattern = Pattern.compile(" {2}\\QSee https://docs.gradle.org\\E.*")
            def tooManyProblemsPattern = Pattern.compile("plus (\\d+) more problems. Please see the report for details.")
    
            def output = LogContent.of(text)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. src/net/sendfile_test.go

    		conn, err := ln.Accept()
    		if err != nil {
    			t.Error(err)
    			return
    		}
    		defer conn.Close()
    		// The comment above states that this should call into sendfile,
    		// but empirically it doesn't seem to do so at this time.
    		// If it does, or does on some platforms, this CopyN should be wrapped
    		// in expectSendfile.
    		_, err = io.CopyN(conn, r, 1)
    		if err != nil {
    			t.Error(err)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. cluster/gce/windows/smoke-test.sh

    }
    
    windows_webserver_deployment=windows-agnhost
    windows_webserver_pod_label=agnhost
    # The default port for 'agnhost serve-hostname'. The documentation says that
    # this can be changed but the --port arg does not seem to work.
    windows_webserver_port=9376
    windows_webserver_replicas=1
    
    function deploy_windows_webserver_pod {
      echo "Writing example deployment to $windows_webserver_deployment.yaml"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. cmd/import-boss/main.go

    	direct := []string{}
    	indirect := []string{}
    	seen := map[string]bool{}
    	for _, imp := range pkg.Imports {
    		direct = append(direct, imp.PkgPath)
    		dfsImports(&indirect, seen, imp)
    	}
    	return direct, indirect
    }
    
    func dfsImports(dest *[]string, seen map[string]bool, p *packages.Package) {
    	for _, p2 := range p.Imports {
    		if seen[p2.PkgPath] {
    			continue
    		}
    		seen[p2.PkgPath] = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. android/pom.xml

                obvious way to ensure that.
    
                We could consider arranging things so that only the tests we know need this would get
                the add-opens. Right now that doesn't seem worth the effort, though.
            -->
            <test.add.opens>
              --add-opens java.base/java.lang=ALL-UNNAMED
              --add-opens java.base/java.util=ALL-UNNAMED
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. pom.xml

                obvious way to ensure that.
    
                We could consider arranging things so that only the tests we know need this would get
                the add-opens. Right now that doesn't seem worth the effort, though.
            -->
            <test.add.opens>
              --add-opens java.base/java.lang=ALL-UNNAMED
              --add-opens java.base/java.util=ALL-UNNAMED
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api.h

    //     TF_AddInputList
    // (2) TF_ColocateWith, TF_AddControlInput etc. do not make sense.
    // (3) Implementation detail: Avoid use of NodeBuilder/NodeDefBuilder since
    //     the additional sanity checks there seem unnecessary;
    typedef struct TFE_Op TFE_Op;
    
    TF_CAPI_EXPORT extern TFE_Op* TFE_NewOp(TFE_Context* ctx,
                                            const char* op_or_function_name,
    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