Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 65 for makelist (0.13 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java

            final String key = fessConfig.getSystemProperty("saml.attribute.group.name", "memberOf");
            if (StringUtil.isNotBlank(key)) {
                final List<String> nameList = attributes.get(key);
                if (nameList != null) {
                    list.addAll(nameList);
                }
            }
            final String value = fessConfig.getSystemProperty("saml.default.groups");
            if (StringUtil.isNotBlank(value)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java

        //                                                                              ======
        @Override
        protected void prepareAssistDirection(final FwAssistDirection direction) {
            direction.directConfig(nameList -> nameList.add("fess_config.properties"), "fess_env.properties");
        }
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_image_test.go

    	imagesPinned := map[string]bool{
    		"1111": false,
    		"2222": true,
    		"3333": false,
    	}
    	imageList := []string{}
    	for image, pinned := range imagesPinned {
    		fakeImageService.SetFakeImagePinned(image, pinned)
    		imageList = append(imageList, image)
    	}
    	fakeImageService.SetFakeImages(imageList)
    
    	actualImages, err := fakeManager.ListImages(ctx)
    	assert.NoError(t, err)
    	for _, image := range actualImages {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/openapi/maplist_test.go

    				"ki": int64(42),
    				"ks": "hello",
    				"v1": "b",
    			},
    		},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    			mapList := MakeMapList(tc.sts, tc.items)
    			for _, warmUp := range tc.warmUpQueries {
    				mapList.Get(warmUp)
    			}
    			actual := mapList.Get(tc.query)
    			if !reflect.DeepEqual(tc.expected, actual) {
    				t.Errorf("got: %v, expected %v", actual, tc.expected)
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 18:08:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/nodes.go

    		Path         *BasicLit // Path.Bad || Path.Kind == StringLit; nil means no path
    		decl
    	}
    
    	// NameList
    	// NameList      = Values
    	// NameList Type = Values
    	ConstDecl struct {
    		Group    *Group // nil means not part of a group
    		Pragma   Pragma
    		NameList []*Name
    		Type     Expr // nil means no type
    		Values   Expr // nil means no values
    		decl
    	}
    
    	// Name Type
    	TypeDecl struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. pkg/volume/util/subpath/subpath_windows_test.go

    limitations under the License.
    */
    
    package subpath
    
    import (
    	"fmt"
    	"io/ioutil"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"testing"
    
    	"github.com/stretchr/testify/assert"
    )
    
    func makeLink(link, target string) error {
    	if output, err := exec.Command("cmd", "/c", "mklink", "/D", link, target).CombinedOutput(); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 13.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ForwardingBlockingDeque.java

      }
    
      @Override
      public E takeFirst() throws InterruptedException {
        return delegate().takeFirst();
      }
    
      @Override
      public E takeLast() throws InterruptedException {
        return delegate().takeLast();
      }
    
      @Override
      @CheckForNull
      public E pollFirst(long timeout, TimeUnit unit) throws InterruptedException {
        return delegate().pollFirst(timeout, unit);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/positions.go

    				continue
    			}
    			if l := len(n.NameList); l > 0 {
    				m = n.NameList[l-1]
    				continue
    			}
    			return n.Pos()
    		case *TypeDecl:
    			m = n.Type
    		case *VarDecl:
    			if n.Values != nil {
    				m = n.Values
    				continue
    			}
    			if n.Type != nil {
    				m = n.Type
    				continue
    			}
    			if l := len(n.NameList); l > 0 {
    				m = n.NameList[l-1]
    				continue
    			}
    			return n.Pos()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/walk.go

    			w.node(n.LocalPkgName)
    		}
    		w.node(n.Path)
    
    	case *ConstDecl:
    		w.nameList(n.NameList)
    		if n.Type != nil {
    			w.node(n.Type)
    		}
    		if n.Values != nil {
    			w.node(n.Values)
    		}
    
    	case *TypeDecl:
    		w.node(n.Name)
    		w.fieldList(n.TParamList)
    		w.node(n.Type)
    
    	case *VarDecl:
    		w.nameList(n.NameList)
    		if n.Type != nil {
    			w.node(n.Type)
    		}
    		if n.Values != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:55:04 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. src/net/dnsconfig_unix_test.go

    			longName = "aa." + longName[3:]
    		}
    		for _, fqdn := range conf.nameList(longName) {
    			if len(fqdn) > 254 {
    				t.Errorf("got %d; want less than or equal to 254", len(fqdn))
    			}
    		}
    
    		// Now test a name that's too long for suffixing.
    		unsuffixable := "a." + longName[1:]
    		unsuffixableResults := conf.nameList(unsuffixable)
    		if len(unsuffixableResults) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 17:41:32 UTC 2022
    - 7.1K bytes
    - Viewed (0)
Back to top