Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 for east (0.15 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	node2         = makeNode("node2").withLabel(nodeLabelKey, "node2").Node
    	node1NoLabels = makeNode("node1").Node
    	node1Zone1    = makeNode("node1").withLabel("topology.gke.io/zone", "us-east-1").Node
    	node1Zone2    = makeNode("node1").withLabel("topology.gke.io/zone", "us-east-2").Node
    
    	// csiNode objects
    	csiNode1Migrated    = makeCSINode("node1", "kubernetes.io/gce-pd")
    	csiNode1NotMigrated = makeCSINode("node1", "")
    
    	// node topology
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. src/time/time_test.go

    	// Issue 4064: handle locations without any zone transitions.
    	loc, err := LoadLocation("Etc/GMT+1")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// The tzdata name Etc/GMT+1 uses "east is negative",
    	// but Go and most other systems use "east is positive".
    	// So GMT+1 corresponds to -3600 in the Go zone, not +3600.
    	name, offset := Now().In(loc).Zone()
    	// The zone abbreviation is "-01" since tzdata-2016g, and "GMT+1"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/time/time.go

    	// Cut off 100-year cycles.
    	// The last cycle has one extra leap year, so on the last day
    	// of that year, day / daysPer100Years will be 4 instead of 3.
    	// Cut it back down to 3 by subtracting n>>2.
    	n = d / daysPer100Years
    	n -= n >> 2
    	y += 100 * n
    	d -= daysPer100Years * n
    
    	// Cut off 4-year cycles.
    	// The last cycle has a missing leap year, which does not
    	// affect the computation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. tests/integration/security/authz_test.go

    								"Source IP-based authz tests are not supported in multi-network configurations " +
    								"due to the fact that the origin source IP will be lost when traversing the " +
    								"east-west gateway.")
    						}
    					}
    
    					cases := []struct {
    						path    string
    						headers http.Header
    						allow   allowValue
    						skipFn  func(t framework.TestContext)
    					}{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/CharMatcher.java

        int len = sequence.length();
        int first;
        int last;
    
        for (first = 0; first < len; first++) {
          if (!matches(sequence.charAt(first))) {
            break;
          }
        }
        for (last = len - 1; last > first; last--) {
          if (!matches(sequence.charAt(last))) {
            break;
          }
        }
    
        return sequence.subSequence(first, last + 1).toString();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/CharMatcher.java

        int len = sequence.length();
        int first;
        int last;
    
        for (first = 0; first < len; first++) {
          if (!matches(sequence.charAt(first))) {
            break;
          }
        }
        for (last = len - 1; last > first; last--) {
          if (!matches(sequence.charAt(last))) {
            break;
          }
        }
    
        return sequence.subSequence(first, last + 1).toString();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. cmd/api-errors.go

    	},
    	ErrInvalidCopyPartRange: {
    		Code:           "InvalidArgument",
    		Description:    "The x-amz-copy-source-range value must be of the form bytes=first-last where first and last are the zero-based offsets of the first and last bytes to copy",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidCopyPartRangeSource: {
    		Code:           "InvalidArgument",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.pb.go

    	// If present, the waypoint proxy for this workload.
    	// All incoming requests must go through the waypoint.
    	Waypoint *GatewayAddress `protobuf:"bytes,8,opt,name=waypoint,proto3" json:"waypoint,omitempty"`
    	// If present, East West network gateway this workload can be reached through.
    	// Requests from remote networks should traverse this gateway.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/replace_cast_hacks_with_tf_xla_ops.mlir

        %18 = "tf.Round"(%17) : (tensor<f32>) -> tensor<f32>
        %19 = "tf.Cast"(%18) : (tensor<f32>) -> tensor<i32>
        %20 = "tf.AddV2"(%19, %arg10) : (tensor<i32>, tensor<i32>) -> tensor<i32>
        %21 = "tf.Cast"(%20) : (tensor<i32>) -> tensor<i8>
        %22 = "tf.Cast"(%21) {Truncate = false} : (tensor<i8>) -> tensor<i8>
        %23 = "tf.Cast"(%22) {Truncate = false} : (tensor<i8>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 81K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

          filter_i8_value_attr = mlir::cast<DenseIntElementsAttr>(
              cast<stablehlo::ConstantOp>(filter_op->getOperand(0).getDefiningOp())
                  .getValue());
        }
    
        // Create Uniform Quantized constant for the filter.
        auto subtract_op =
            cast<stablehlo::SubtractOp>(*op.getResult().user_begin());
        auto other_conv_op = cast<stablehlo::ConvolutionOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
Back to top