Search Options

Results per page
Sort
Preferred Languages
Advance

Results 391 - 400 of 2,835 for 2$ (0.04 sec)

  1. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional FlowSchemaSpec spec = 2;
    
      // `status` is the current status of a FlowSchema.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional FlowSchemaStatus status = 3;
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      repeated Deployment items = 2;
    }
    
    // DEPRECATED.
    // DeploymentRollback stores the information required to rollback a deployment.
    message DeploymentRollback {
      // Required: This must match the Name of a deployment.
      optional string name = 1;
    
      // The annotations to be updated to a deployment
      // +optional
      map<string, string> updatedAnnotations = 2;
    
      // The config of this deployment rollback.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/TransPeekNamedPipeResponse.java

            return 0;
        }
        int readParametersWireFormat( byte[] buffer, int bufferIndex, int len ) {
            available = readInt2( buffer, bufferIndex ); bufferIndex += 2;
            head = readInt2( buffer, bufferIndex ); bufferIndex += 2;
            status = readInt2( buffer, bufferIndex );
            return 6;
        }
        int readDataWireFormat( byte[] buffer, int bufferIndex, int len ) {
            return 0;
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	VLD1.P (R3)(R14), V16.B[11]                                 // 700cce4d
    	VLD1.P 2(R1), V28.H[2]                                      // 3c50df0d
    	VLD1.P (R13)(R20), V9.H[2]                                  // a951d40d
    	VLD1.P 4(R17), V1.S[3]                                      // 2192df4d
    	VLD1.P (R14)(R2), V17.S[2]                                  // d181c24d
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  5. internal/bucket/bandwidth/monitor_test.go

    				update2:       oneMiB,
    				endTime2:      start.Add(2 * time.Second),
    			},
    			want: &BucketBandwidthReport{
    				BucketStats: test1Want,
    			},
    			want2: &BucketBandwidthReport{
    				BucketStats: test1Want2,
    			},
    		},
    		{
    			name: "OneToTwo",
    			fields: fields{
    				activeBuckets: test1ActiveBuckets2,
    				endTime:       start.Add(1 * time.Second),
    				update2:       2 * oneMiB,
    				endTime2:      start.Add(2 * time.Second),
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Sep 06 03:21:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/discovery/v1/generated.proto

      // +listType=set
      repeated string addresses = 1;
    
      // conditions contains information about the current status of the endpoint.
      optional EndpointConditions conditions = 2;
    
      // hostname of this endpoint. This field may be used by consumers of
      // endpoints to distinguish endpoints from each other (e.g. in DNS names).
      // Multiple endpoints which use the same hostname should be considered
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/HeadersJvmTest.kt

            "no-cache",
          )
        val headerMap = headers.toMultimap()
        assertThat(headerMap["cache-control"]!!.size).isEqualTo(2)
        assertThat(headerMap["Cache-Control"]!!.size).isEqualTo(2)
      }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/eventbus/DispatcherTest.java

                )
            .inOrder();
      }
    
      public void testLegacyAsyncDispatcher() {
        dispatcher = Dispatcher.legacyAsync();
    
        final CyclicBarrier barrier = new CyclicBarrier(2);
        final CountDownLatch latch = new CountDownLatch(2);
    
        new Thread(
                new Runnable() {
                  @Override
                  public void run() {
                    try {
                      barrier.await();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Apr 27 15:41:25 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbSession.java

                            } catch (SmbException se) {
                                if (SmbTransport.log.level >= 2) {
                                    SmbTransport.log.println( "Failed validate DC: " + dc_list[i] );
                                    if (SmbTransport.log.level > 2)
                                        se.printStackTrace( SmbTransport.log );
                                }
                            }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 18.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/ConcurrentHashMultisetTest.java

        cms.add("a", 2);
        cms.add("b", 3);
    
        assertThrows(IllegalArgumentException.class, () -> cms.removeExactly("a", -2));
    
        assertTrue(cms.removeExactly("a", 0));
        assertEquals(2, cms.count("a"));
        assertTrue(cms.removeExactly("c", 0));
        assertEquals(0, cms.count("c"));
    
        assertFalse(cms.removeExactly("a", 4));
        assertEquals(2, cms.count("a"));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 14.2K bytes
    - Viewed (0)
Back to top