Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 7,902 for other2 (0.19 sec)

  1. platforms/documentation/docs/src/snippets/customPlugins/customPlugin/kotlin/other.gradle.kts

    Laura Kassovic <******@****.***> 1712356553 -0700
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 22:35:53 UTC 2024
    - 283 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/methodsetcache.go

    			return cache.lookupNamed(N).pointer
    		}
    	}
    
    	// all other types
    	// (The map uses pointer equivalence, not type identity.)
    	mset := cache.others[T]
    	if mset == nil {
    		mset = types.NewMethodSet(T)
    		if cache.others == nil {
    			cache.others = make(map[types.Type]*types.MethodSet)
    		}
    		cache.others[T] = mset
    	}
    	return mset
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 18:08:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/ip.go

    	}
    	return types.NewErr("type conversion error from '%s' to '%s'", IPType, typeVal)
    }
    
    // Equal implements ref.Val.Equal.
    func (d IP) Equal(other ref.Val) ref.Val {
    	otherD, ok := other.(IP)
    	if !ok {
    		return types.ValOrErr(other, "no such overload")
    	}
    	return types.Bool(d.Addr == otherD.Addr)
    }
    
    // Type implements ref.Val.Type.
    func (d IP) Type() ref.Type {
    	return IPType
    }
    
    // Value implements ref.Val.Value.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 11:02:33 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. docs/en/docs/help-fastapi.md

    On the other side, there are thousands of users in the chat systems, so there's a high chance you'll find someone to talk to there, almost all the time. 😄
    
    ## Sponsor the author
    
    You can also financially support the author (me) through <a href="https://github.com/sponsors/tiangolo" class="external-link" target="_blank">GitHub sponsors</a>.
    
    There you could buy me a coffee ☕️ to say thanks. 😄
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/cidr.go

    	return types.NewErr("type conversion error from '%s' to '%s'", CIDRType, typeVal)
    }
    
    // Equal implements ref.Val.Equal.
    func (d CIDR) Equal(other ref.Val) ref.Val {
    	otherD, ok := other.(CIDR)
    	if !ok {
    		return types.ValOrErr(other, "no such overload")
    	}
    
    	return types.Bool(d.Prefix == otherD.Prefix)
    }
    
    // Type implements ref.Val.Type.
    func (d CIDR) Type() ref.Type {
    	return CIDRType
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/beans/util/MyBean3.java

    public class MyBean3 {
    
        /**
         *
         */
        public String abc_value = "abc";
    
        /**
         *
         */
        public String xyz_value = "xyz";
    
        /**
         *
         */
        public String other = "other";
    
        /**
         *
         */
        public String abc_exclude = "exclude";
    
        /**
         *
         */
        public String ab = "ab";
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1011 bytes
    - Viewed (0)
  7. docs/en/docs/fastapi-people.md

    These are the users that have been [helping others the most with questions in GitHub](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank}. 🙇
    
    They have proven to be **FastAPI Experts** by helping many others. ✨
    
    !!! tip
        You could become an official FastAPI Expert too!
    
        Just [help others with questions in GitHub](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank}. 🤓
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 16 23:54:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RequestData.java

            }
            if ((obj == null) || (getClass() != obj.getClass())) {
                return false;
            }
            final RequestData other = (RequestData) obj;
            if (!Objects.equals(metaData, other.metaData) || (method != other.method) || !Objects.equals(url, other.url)) {
                return false;
            }
            return true;
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/UserAgentHelper.java

                    if (uaType == null) {
                        uaType = UserAgentType.OTHER;
                    }
                    request.setAttribute(USER_AGENT_TYPE, uaType);
                }
                return uaType;
            }).orElse(UserAgentType.OTHER);
        }
    
        public enum UserAgentType {
            IE, FIREFOX, CHROME, SAFARI, OPERA, OTHER;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. docs/contribute/code_of_conduct.md

       capacity and competence.
    
     * **Be considerate**: People use our work, and we depend on the work of others. Consider users and
       colleagues before taking action. For example, changes to code, infrastructure, policy, and
       documentation may negatively impact others.
    
     * **Be respectful**: We expect people to work together to resolve conflict, assume good intentions,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
Back to top