Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for fixwd (0.08 sec)

  1. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

                },
                "properties": [
                  {
                    "id": "color",
                    "value": {
                      "fixedColor": "light-red",
                      "mode": "fixed"
                    }
                  }
                ]
              },
              {
                "matcher": {
                  "id": "byName",
                  "options": "Replication Requests"
                },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.31.md

    - Fixed EDITOR/KUBE_EDITOR with double-quoted paths with spaces when on Windows cmd.exe. ([#112104](https://github.com/kubernetes/kubernetes/pull/112104), [@oldium](https://github.com/oldium)) [SIG CLI and Windows]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  3. src/time/format.go

    	}
    	c := s[i]
    	return '0' <= c && c <= '9'
    }
    
    // getnum parses s[0:1] or s[0:2] (fixed forces s[0:2])
    // as a decimal integer and returns the integer and the
    // remainder of the string.
    func getnum(s string, fixed bool) (int, string, error) {
    	if !isDigit(s, 0) {
    		return 0, s, errBad
    	}
    	if !isDigit(s, 1) {
    		if fixed {
    			return 0, s, errBad
    		}
    		return int(s[0] - '0'), s[1:], nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    				Limit: 1,
    			},
    			// TODO(#108003): As of now, watchcache is deliberately ignoring
    			// limit if RV=0 is specified, returning whole list of objects.
    			// While this should eventually get fixed, for now we're explicitly
    			// ignoring this testcase for watchcache.
    			ignoreForWatchCache:        true,
    			expectedOut:                []example.Pod{*preset[1]},
    			expectContinue:             true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  5. .bazelrc

    test:release_macos_arm64 --config=release_macos_base
    
    # Ensure release_base is set on windows
    build:release_cpu_windows --config=release_base
    
    # TODO(kanglan): Update windows configs after b/289091160 is fixed
    build:release_cpu_windows --config=avx_win
    build:release_cpu_windows --define=no_tensorflow_py_deps=true
    
    # Exclude TFRT integration for anything but Linux.
    build:android --config=no_tfrt
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

        readonly_model_ = input_model_->GetModel();
        model_ = UnPackFlatBufferModel(*readonly_model_);
      }
    };
    
    // TODO(b/327796566): re-enable after the bug is fixed
    // TEST_F(QuantizeConvNoBiasModelTest, QuantizationSucceeds) {
    //   auto status = QuantizeModelAllOperators(
    //       &model_, TensorType_INT8, TensorType_INT8,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. cmd/iam.go

    	// authZ plugin is set, role policies are just claims sent to
    	// the plugin and they need not exist.
    	//
    	// If some mapped policies do not exist, we print some error
    	// messages but continue any way - they can be fixed in the
    	// running server by creating the policies after start up.
    	for arn, rolePolicies := range m {
    		specifiedPoliciesSet := newMappedPolicy(rolePolicies).policySet()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top