Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 879 for RES (0.03 sec)

  1. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

                            final SuggestIndexResponse res = indexFromQueryLog(queryLogs.toArray(new QueryLog[queryLogs.size()]));
                            errors.addAll(res.getErrors());
                            numberOfSuggestDocs += res.getNumberOfSuggestDocs();
                            numberOfInputDocs += res.getNumberOfInputDocs();
                            queryLogs.clear();
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. cmd/global-heal.go

    	defer close(results)
    
    	go func() {
    		for res := range results {
    			if res.entryDone {
    				tracker.setObject(res.name)
    				if time.Since(tracker.getLastUpdate()) > time.Minute {
    					healingLogIf(ctx, tracker.update(ctx))
    				}
    				continue
    			}
    
    			tracker.updateProgress(res.success, res.skipped, res.bytes)
    		}
    	}()
    
    	var retErr error
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/syscall/syscall_windows_test.go

    	f.Fuzz(func(t *testing.T, tst string) {
    		res, err := syscall.UTF16FromString(tst)
    		if err != nil {
    			if strings.Contains(tst, "\x00") {
    				t.Skipf("input %q contains a NUL byte", tst)
    			}
    			t.Fatalf("UTF16FromString(%q): %v", tst, err)
    		}
    		t.Logf("UTF16FromString(%q) = %04x", tst, res)
    
    		if len(res) < 1 || res[len(res)-1] != 0 {
    			t.Fatalf("missing NUL terminator")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 16:33:09 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. pkg/ledger/smt_test.go

    	res = <-ch
    	cleanRoot := res.update
    	if !bytes.Equal(newRoot, cleanRoot) {
    		t.Fatal("roots mismatch")
    	}
    
    	// Empty the trie
    	var newValues [][]byte
    	for i := 0; i < 10; i++ {
    		newValues = append(newValues, defaultLeaf)
    	}
    	ch = make(chan result, 1)
    	smt.update(root, keys, newValues, nil, 0, smt.trieHeight, false, true, ch)
    	res = <-ch
    	root = res.update
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/src/main/res/layout/activity_main.xml

    <?xml version="1.0" encoding="utf-8"?>
    <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity">
    
        <TextView
            android:layout_width="wrap_content"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 768 bytes
    - Viewed (0)
  6. pkg/kube/kclient/helpers.go

    	"istio.io/istio/pkg/kube/controllers"
    )
    
    func CreateOrUpdate[T controllers.Object](c Writer[T], object T) (T, error) {
    	res, err := c.Create(object)
    	if kerrors.IsAlreadyExists(err) {
    		// Already exist, update
    		return c.Update(object)
    	}
    	return res, err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 06 16:02:24 UTC 2023
    - 919 bytes
    - Viewed (0)
  7. istioctl/pkg/precheck/precheck.go

    			}
    		}
    		if verificationImpacted {
    			res := ObjectToInstance(dr)
    			messages.Add(msg.NewUpdateIncompatibility(res,
    				"VERIFY_CERTIFICATE_AT_CLIENT", "1.20",
    				"previously, TLS verification was skipped. Set `insecureSkipVerify` if this behavior is desired", "1.20"))
    		}
    		if sniImpacted {
    			res := ObjectToInstance(dr)
    			messages.Add(msg.NewUpdateIncompatibility(res,
    				"ENABLE_AUTO_SNI", "1.20",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry.go

    		}
    		m = append(m, cfg)
    	}
    
    	var res any
    	// Finally, compute the actual filters based on the protoc
    	switch protocol {
    	case networking.ListenerProtocolHTTP:
    		res = buildHTTPTelemetryFilter(class, m)
    	default:
    		res = buildTCPTelemetryFilter(class, m)
    	}
    
    	// Update cache
    	t.computedMetricsFilters[key] = res
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/src/main/res/layout/activity_main.xml

    <?xml version="1.0" encoding="utf-8"?>
    <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity">
    
        <TextView
            android:layout_width="wrap_content"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 768 bytes
    - Viewed (0)
  10. pkg/test/framework/components/environment/kube/fake.go

    			ConfigClusterName:  fmt.Sprintf("cluster-%d", i),
    		}, allClusters)
    		c := &kube.Cluster{Topology: topo}
    		res = append(res, c)
    		allClusters[c.Name()] = c
    	}
    	return res
    }
    
    func (f FakeEnvironment) Clusters() cluster.Clusters {
    	return f.AllClusters().MeshClusters()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top