Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 291 for cat2 (0.04 sec)

  1. src/net/http/clientserver_test.go

    	defer cst1.close()
    	cst2 := newClientServerTest(t, http2Mode, HandlerFunc(tt.Handler), tt.Opts...)
    	defer cst2.close()
    
    	res1, err := tt.reqFunc()(cst1.c, cst1.ts.URL)
    	if err != nil {
    		t.Errorf("HTTP/1 request: %v", err)
    		return
    	}
    	res2, err := tt.reqFunc()(cst2.c, cst2.ts.URL)
    	if err != nil {
    		t.Errorf("HTTP/2 request: %v", err)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/startup_live.yaml

                - name: http
                  containerPort: 90
              livenessProbe:
                httpGet:
                  port: http
              startupProbe:
                exec:
                  command:
                    - cat
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 952 bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // This statement will instantiate all tests from FooTest again, each
    // with parameter values "cat" and "dog":
    
    const char* pets[] = {"cat", "dog"};
    INSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest, ValuesIn(pets));
    
    // The tests from the instantiation above will have these names:
    //
    //    * AnotherInstantiationName/FooTest.DoesBlah/0 for "cat"
    //    * AnotherInstantiationName/FooTest.DoesBlah/1 for "dog"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/hello-probes-proxyHoldApplication-ProxyConfig.yaml

            ports:
            - name: http
              containerPort: 90
            livenessProbe:
              httpGet:
                port: http
            readinessProbe:
              exec:
                command:
                - cat
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 13 08:52:02 UTC 2020
    - 995 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/fake_quant_e2e_xla.mlir

    // CHECK: %[[pad2:.*]] = "tf.PadV2"(%[[quant2]]
    // CHECK: %[[xlaconv2:.*]] = "tf.XlaConvV2"(%[[pad2]]
    // CHECK: %[[sub2:.*]] = "tf.Sub"(%[[xlaconv2]]
    // CHECK: %[[cast2:.*]] = "tf.Cast"(%[[sub2]]) <{Truncate = false}> : (tensor<1x3x2x2xi32>) -> tensor<1x3x2x2xf32>
    // CHECK: %[[rescale2:.*]] = "tf.Mul"(%[[cast2]]
    // CHECK: %[[rescale2_maxclamped:.*]] = "tf.Maximum"(%[[rescale2]]
    // CHECK: %[[rescale2_minclamped:.*]] = "tf.Minimum"(%[[rescale2_maxclamped]]
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. src/regexp/syntax/compile.go

    	case OpNoWordBoundary:
    		return c.empty(EmptyNoWordBoundary)
    	case OpCapture:
    		bra := c.cap(uint32(re.Cap << 1))
    		sub := c.compile(re.Sub[0])
    		ket := c.cap(uint32(re.Cap<<1 | 1))
    		return c.cat(c.cat(bra, sub), ket)
    	case OpStar:
    		return c.star(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
    	case OpPlus:
    		return c.plus(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
    	case OpQuest:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    const acePrefix = "xn--"
    
    func (p *Profile) simplify(cat category) category {
    	switch cat {
    	case disallowedSTD3Mapped:
    		if p.useSTD3Rules {
    			cat = disallowed
    		} else {
    			cat = mapped
    		}
    	case disallowedSTD3Valid:
    		if p.useSTD3Rules {
    			cat = disallowed
    		} else {
    			cat = valid
    		}
    	case deviation:
    		if !p.transitional {
    			cat = valid
    		}
    	case validNV8, validXV8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/AbstractTableReadTest.java

        assertTrue(table.contains("bar", 1));
        assertTrue(table.contains("foo", 3));
        assertFalse(table.contains("foo", 2));
        assertFalse(table.contains("bar", 3));
        assertFalse(table.contains("cat", 1));
        assertFalse(table.contains("foo", null));
        assertFalse(table.contains(null, 1));
        assertFalse(table.contains(null, null));
      }
    
      public void testContainsRow() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 16:54:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyCapabilitiesResolveIntegrationTest.groovy

                        artifact(name: expectedVariant)
                    }
                }
            }
    
            where:
            capability | expectedVariant
            'cap1'     | 'first'
            'cap2'     | 'second'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 3K bytes
    - Viewed (0)
  10. samples/bookinfo/platform/kube/cleanup.sh

    ret=$?
    function cleanup() {
      rm -f "${OUTPUT}"
    }
    
    trap cleanup EXIT
    
    if [[ ${ret} -eq 0 ]];then
      cat "${OUTPUT}"
    else
      # ignore NotFound errors
      OUT2=$(grep -v NotFound "${OUTPUT}")
      if [[ -n ${OUT2} ]];then
        cat "${OUTPUT}"
        exit ${ret}
      fi
    fi
    
    # wait for 30 sec for bookinfo to clean up
    sleep 30
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top