Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for 1391 (0.06 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: switched kubeadm to start using the CRI client library instead of shelling...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. subprojects/distributions-dependencies/build.gradle.kts

            api(libs.googleHttpClient)      { version { strictly("1.42.2"); because("our Google API Client version requires 1.42.2") }}
            api(libs.googleOauthClient)     { version { strictly("1.34.1"); because("our Google API Client version requires 1.34.1") }}
            api(libs.groovy)                { version { strictly(libs.groovyVersion) }}
            api(libs.groovyAnt)             { version { strictly(libs.groovyVersion) }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. internal/logger/target/kafka/kafka.go

    	if err != nil {
    		return err
    	}
    	h.client = client
    	h.producer = producer
    
    	if len(h.client.Brokers()) > 0 {
    		// Refer https://github.com/IBM/sarama/issues/1341
    		atomic.StoreInt32(&h.status, statusOnline)
    	}
    
    	return nil
    }
    
    // IsOnline returns true if the target is online.
    func (h *Target) IsOnline(_ context.Context) bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    	if s.bits.CompareAndSwap(uint64(*old), uint64(new)) {
    		*old = new
    		return true
    	}
    	return false
    }
    
    type counterStateBits uint64
    
    const (
    	stateReaders    counterStateBits = 1<<30 - 1
    	stateLocked     counterStateBits = stateReaders
    	stateHavePtr    counterStateBits = 1 << 30
    	stateExtraShift                  = 31
    	stateExtra      counterStateBits = 1<<64 - 1<<stateExtraShift
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. internal/event/target/kafka.go

    	if err := target.init(); err != nil {
    		return false, err
    	}
    	return target.isActive()
    }
    
    func (target *KafkaTarget) isActive() (bool, error) {
    	// Refer https://github.com/IBM/sarama/issues/1341
    	brokers := target.client.Brokers()
    	if len(brokers) == 0 {
    		return false, store.ErrNotConnected
    	}
    	return true, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 15:02:59 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      // OK
      %0 = "tf.AvgPool"(%arg0) {T = "tfdtype$DT_FLOAT", data_format = "NHWC", ksize = [1, 3, 6, 1], padding = "VALID", strides = [1, 3, 1, 1]} : (tensor<1x6x6x16xf32>) -> tensor<1x1x1x16xf32>
      // Unsupported ksize
      %1 = "tf.AvgPool"(%arg0) {T = "tfdtype$DT_FLOAT", data_format = "NHWC", ksize = [3, 3, 6, 1], padding = "VALID", strides = [1, 3, 1, 1]} : (tensor<1x6x6x16xf32>) -> tensor<1x1x1x16xf32>
      // Unsupported strides
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	if err != nil {
    		return
    	}
    	defer LocalFree(Handle(unsafe.Pointer(winHeapACL)))
    	aclBytes := make([]byte, winHeapACL.aclSize)
    	copy(aclBytes, (*[(1 << 31) - 1]byte)(unsafe.Pointer(winHeapACL))[:len(aclBytes):len(aclBytes)])
    	return (*ACL)(unsafe.Pointer(&aclBytes[0])), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    	if n < 0 {
    		panic("negative update")
    	}
    	unsent := int64(f.unsent) + int64(n)
    	// "A sender MUST NOT allow a flow-control window to exceed 2^31-1 octets."
    	// RFC 7540 Section 6.9.1.
    	const maxWindow = 1<<31 - 1
    	if unsent+int64(f.avail) > maxWindow {
    		panic("flow control update exceeds maximum window size")
    	}
    	f.unsent = int32(unsent)
    	if f.unsent < http2inflowMinRefresh && f.unsent < f.avail {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  9. src/time/format.go

    				yday--
    			}
    		}
    		if yday < 1 || yday > 365 {
    			return Time{}, newParseError(alayout, avalue, "", value, ": day-of-year out of range")
    		}
    		if m == 0 {
    			m = (yday-1)/31 + 1
    			if int(daysBefore[m]) < yday {
    				m++
    			}
    			d = yday - int(daysBefore[m-1])
    		}
    		// If month, day already seen, yday's m, d must match.
    		// Otherwise, set them from m, d.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. docs/en/docs/release-notes.md

    * 🌐 Add German translation for `docs/de/docs/tutorial/middleware.md`. PR [#10391](https://github.com/tiangolo/fastapi/pull/10391) by [@JohannesJungbluth](https://github.com/JohannesJungbluth).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top