Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for ctb1 (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

                        cb.specify().columnId();
                    });
            final List<String> idList = activeSessionList.stream().map(CrawlingInfo::getId).collect(Collectors.toList());
            crawlingInfoParamBhv.queryDelete(cb1 -> cb1.query().filtered((cq, cf) -> {
                cq.matchAll();
                if (!idList.isEmpty()) {
                    cf.not(subCf -> subCf.setCrawlingInfoId_InScope(idList));
                }
            }));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/image/color/ycbcr.go

    	r := yy1 + 91881*cr1
    	if uint32(r)&0xff000000 == 0 {
    		r >>= 16
    	} else {
    		r = ^(r >> 31)
    	}
    
    	g := yy1 - 22554*cb1 - 46802*cr1
    	if uint32(g)&0xff000000 == 0 {
    		g >>= 16
    	} else {
    		g = ^(g >> 31)
    	}
    
    	b := yy1 + 116130*cb1
    	if uint32(b)&0xff000000 == 0 {
    		b >>= 16
    	} else {
    		b = ^(b >> 31)
    	}
    
    	return uint8(r), uint8(g), uint8(b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. pkg/kubelet/config/common_test.go

    				SecurityContext:          securitycontext.ValidSecurityContextWithContainerDefaults(),
    				VolumeMounts: []v1.VolumeMount{
    					{
    						Name:      "ctb-volume",
    						MountPath: "/var/run/ctb-volume",
    					},
    				},
    			}},
    			Volumes: []v1.Volume{
    				{
    					Name: "ctb-volume",
    					VolumeSource: v1.VolumeSource{
    						Projected: &v1.ProjectedVolumeSource{
    							Sources: []v1.VolumeProjection{
    								{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/replicate_to_island_legacy.mlir

        }
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK: %[[CT_0:.*]] = tf_executor.ControlTrigger
    // CHECK: %[[CT_1:.*]] = tf_executor.ControlTrigger
    // CHECK: %{{.*}} = tf_executor.island(%[[CT_0]], %[[CT_1]])
    // CHECK: %{{.*}} = tf_executor.island(%[[CT_0]], %[[CT_1]])
    
    
    // Tests devices are not remapped if no devices were defined in replicate.
    // CHECK-LABEL: func @no_devices
    func.func @no_devices() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/replicate_to_island.mlir

        }
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK: %[[CT_0:.*]] = tf_executor.ControlTrigger
    // CHECK: %[[CT_1:.*]] = tf_executor.ControlTrigger
    // CHECK: %{{.*}} = tf_executor.island(%[[CT_0]], %[[CT_1]])
    // CHECK: %{{.*}} = tf_executor.island(%[[CT_0]], %[[CT_1]])
    
    
    // Tests devices are not remapped if no devices were defined in replicate.
    // CHECK-LABEL: func @no_devices
    func.func @no_devices() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  6. src/net/pipe.go

    // copying data directly between the two; there is no internal
    // buffering.
    func Pipe() (Conn, Conn) {
    	cb1 := make(chan []byte)
    	cb2 := make(chan []byte)
    	cn1 := make(chan int)
    	cn2 := make(chan int)
    	done1 := make(chan struct{})
    	done2 := make(chan struct{})
    
    	p1 := &pipe{
    		rdRx: cb1, rdTx: cn1,
    		wrTx: cb2, wrRx: cn2,
    		localDone: done1, remoteDone: done2,
    		readDeadline:  makePipeDeadline(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. pkg/registry/core/pod/storage/storage_test.go

    			query:    "foo:12345",
    			location: expectedIP + ":12345",
    		},
    		{
    			pod: api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{Name: "ctr1"},
    						{Name: "ctr2", Ports: []api.ContainerPort{{ContainerPort: 9376}}},
    					},
    				},
    				Status: api.PodStatus{PodIPs: []api.PodIP{{IP: expectedIP}}},
    			},
    			query:    "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  8. pkg/volume/testing/volume_host.go

    func (f *fakeKubeletVolumeHost) GetTrustAnchorsByName(name string, allowMissing bool) ([]byte, error) {
    	ctb, err := f.kubeClient.CertificatesV1alpha1().ClusterTrustBundles().Get(context.Background(), name, metav1.GetOptions{})
    	if err != nil {
    		return nil, fmt.Errorf("while getting ClusterTrustBundle %s: %w", name, err)
    	}
    
    	return []byte(ctb.Spec.TrustBundle), nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/idn/PunycodeTest.kt

        assertNull(Punycode.decode("xn--a-99999b.net"))
      }
    
      @Test fun dashInPrefix() {
        testEncodeDecode(
          unicode = "klmnöpqrst-uvwxy",
          punycode = "xn--klmnpqrst-uvwxy-ctb",
        )
      }
    
      @Test fun uppercasePunycode() {
        testDecodeOnly(
          unicode = "ليهمابتكلموشعربي؟",
          punycode = "XN--EGBPDAJ6BU4BXFGEHFVWXN",
        )
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. src/crypto/internal/mlkem768/mlkem768_test.go

    		o.Write(k)
    
    		kk, err := Decapsulate(dk, ct)
    		if err != nil {
    			t.Fatal(err)
    		}
    		if !bytes.Equal(kk, k) {
    			t.Errorf("k: got %x, expected %x", kk, k)
    		}
    
    		s.Read(ct1)
    		k1, err := Decapsulate(dk, ct1)
    		if err != nil {
    			t.Fatal(err)
    		}
    		o.Write(k1)
    	}
    
    	got := hex.EncodeToString(o.Sum(nil))
    	if got != expected {
    		t.Errorf("got %s, expected %s", got, expected)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 15:27:18 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top