Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 86 for EXISTS (0.15 sec)

  1. okhttp/src/test/java/okhttp3/CacheTest.kt

      }
    
      /**
       * Old implementations of OkHttp's response cache wrote header fields like ":status: 200 OK". This
       * broke our cached response parser because it split on the first colon. This regression test
       * exists to help us read these old bad cache entries.
       *
       * https://github.com/square/okhttp/issues/227
       */
      @Test
      fun testGoldenCacheResponse() {
        cache.close()
        server.enqueue(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    			wantReason:   "foo",
    			expectList:   []batch.JobCondition{*newCondition(batch.JobSuspended, v1.ConditionTrue, "foo", "", realClock.Now())},
    			expectUpdate: true,
    		},
    		{
    			name:         "condition already exists",
    			haveList:     []batch.JobCondition{*newCondition(batch.JobSuspended, v1.ConditionTrue, "foo", "", realClock.Now())},
    			wantType:     batch.JobSuspended,
    			wantStatus:   v1.ConditionTrue,
    			wantReason:   "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector_test.go

    					},
    				}),
    			},
    		},
    		// child pointing at incorrect apiVersion/kind of still-existing parent object (e.g. core/v1 Secret with uid=123, where an apps/v1 Deployment with uid=123 exists)
    		// * should be deleted immediately
    		// * should not trigger deletion of legitimate children of parent
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    			if x2 != 0 {
    				zRX(op_LA, regtmp(p), regtmp(p), uint32(x2), 0, asm)
    			}
    			x2 = int16(regtmp(p))
    			d2 = 0
    		}
    		// Emits an RX instruction if an appropriate one exists and the displacement fits in 12 bits. Otherwise use an RXY instruction.
    		if op, ok := c.zopstore12(p.As); ok && isU12(d2) {
    			zRX(op, uint32(p.From.Reg), uint32(x2), uint32(b2), uint32(d2), asm)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__storagemigration.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.3K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// For GOAMD64<v2, any use must be preceded by a successful check of runtime.x86HasSSE41.
    		{name: "ROUNDSD", argLength: 1, reg: fp11, aux: "Int8", asm: "ROUNDSD"},
    
    		// VFMADD231SD only exists on platforms with the FMA3 instruction set.
    		// Any use must be preceded by a successful check of runtime.support_fma.
    		{name: "VFMADD231SD", argLength: 3, reg: fp31, resultInArg0: true, asm: "VFMADD231SD"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  9. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    //	        TimeCreated < @end
    //	        and TimeCreated >= @start;`,
    //	    sql.Named("start", startTime),
    //	    sql.Named("end", endTime),
    //	)
    func Named(name string, value any) NamedArg {
    	// This method exists because the go1compat promise
    	// doesn't guarantee that structs don't grow more fields,
    	// so unkeyed struct literals are a vet error. Thus, we don't
    	// want to allow sql.NamedArg{name, value}.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top