Search Options

Results per page
Sort
Preferred Languages
Advance

Results 601 - 610 of 2,735 for retorno (0.09 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

            case CrudMode.CREATE:
                return OptionalEntity.of(new ElevateWord()).map(entity -> {
                    entity.setCreatedBy(username);
                    entity.setCreatedTime(currentTime);
                    return entity;
                });
            case CrudMode.EDIT:
                if (form instanceof EditForm) {
    Registered: Mon Oct 28 08:04:08 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. istioctl/pkg/xds/google.go

    	}
    	if err := updateAuthHdrs(ctx, uri, "k8s", c.k8sCreds, ret, "x-mesh-authorization"); err != nil {
    		return nil, err
    	}
    	if err := updateAuthHdrs(ctx, uri, "gcp", c.gcpCreds, ret, "authorization"); err != nil {
    		return nil, err
    	}
    	return ret, nil
    }
    
    func (*meshAuthCredentials) RequireTransportSecurity() bool {
    	return true
    }
    
    Registered: Wed Oct 30 22:53:10 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/TypeMetaData.java

        }
    
        public TypeMetaData setVarargs() {
            this.varargs = true;
            return this;
        }
    
        public List<TypeMetaData> getTypeArgs() {
            return typeArgs;
        }
    
        public TypeMetaData getRawType() {
            if (wildcard || lowerBounds != null) {
                return OBJECT;
            }
            if (upperBounds != null) {
                return upperBounds.getRawType();
            }
    Registered: Wed Oct 30 11:36:09 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  4. istioctl/pkg/tag/generate.go

    	revWebhooks, err := GetWebhooksWithRevision(ctx, client.Kube(), opts.Revision)
    	if err != nil {
    		return "", err
    	}
    	if len(revWebhooks) == 0 {
    		return "", fmt.Errorf("cannot modify tag: cannot find MutatingWebhookConfiguration with revision %q", opts.Revision)
    	}
    	if len(revWebhooks) > 1 {
    		return "", fmt.Errorf("cannot modify tag: found multiple canonical webhooks with revision %q", opts.Revision)
    	}
    
    Registered: Wed Oct 30 22:53:10 UTC 2024
    - Last Modified: Wed Oct 09 16:05:45 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/user/bsentity/dbmeta/UserDbm.java

            return _columnDescription;
        }
    
        public ColumnInfo columnDestinationIndicator() {
            return _columnDestinationIndicator;
        }
    
        public ColumnInfo columnDisplayName() {
            return _columnDisplayName;
        }
    
        public ColumnInfo columnEmployeeNumber() {
            return _columnEmployeeNumber;
        }
    
        public ColumnInfo columnEmployeeType() {
            return _columnEmployeeType;
    Registered: Mon Oct 28 08:04:08 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 27K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/AbstractLanguageElement.java

                return true;
            }
            if (o == null || getClass() != o.getClass()) {
                return false;
            }
            AbstractLanguageElement that = (AbstractLanguageElement) o;
            return Objects.equals(rawCommentText, that.rawCommentText) &&
                Objects.equals(annotationNames, that.annotationNames);
        }
    
        @Override
        public int hashCode() {
    Registered: Wed Oct 30 11:36:09 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/net.go

    	filter := map[types.UID]*corev1.Pod{
    		pod.UID: pod,
    	}
    	return s.scanProcForPodsAndCache(filter)
    }
    
    func (s *NetServer) getOrOpenNetns(pod *corev1.Pod, netNs string) (Netns, error) {
    	if netNs == "" {
    		return s.getNetns(pod)
    	}
    	return s.openNetns(pod, netNs)
    }
    
    func (s *NetServer) openNetns(pod *corev1.Pod, netNs string) (Netns, error) {
    	return s.currentPodSnapshot.UpsertPodCache(pod, netNs)
    }
    
    Registered: Wed Oct 30 22:53:10 UTC 2024
    - Last Modified: Mon Oct 21 16:48:55 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. istioctl/pkg/waypoint/waypoint.go

    		return fmt.Errorf("failed to update namespace %s: %v", ns, err)
    	}
    	return nil
    }
    
    func namespaceHasLabel(kubeClient kube.CLIClient, ns string, label string) (bool, error) {
    	nsObj, err := getNamespace(kubeClient, ns)
    	if err != nil {
    		return false, err
    	}
    	if nsObj.Labels == nil {
    		return false, nil
    	}
    	return nsObj.Labels[label] != "", nil
    }
    
    Registered: Wed Oct 30 22:53:10 UTC 2024
    - Last Modified: Wed Oct 09 16:05:45 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java

            return segmentation;
        }
    
        public String getReading() {
            return reading;
        }
    
        public String getPos() {
            return pos;
        }
    
        public boolean isUpdated() {
            return newToken != null;
        }
    
        public boolean isDeleted() {
            return isUpdated() && newToken.length() == 0;
        }
    
        @Override
        public int hashCode() {
    Registered: Mon Oct 28 08:04:08 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/AdminRelatedcontentAction.java

            case CrudMode.CREATE:
                return OptionalEntity.of(new RelatedContent()).map(entity -> {
                    entity.setCreatedBy(username);
                    entity.setCreatedTime(currentTime);
                    return entity;
                });
            case CrudMode.EDIT:
                if (form instanceof EditForm) {
    Registered: Mon Oct 28 08:04:08 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top