Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for rnews (0.29 sec)

  1. tests/embedded_struct_test.go

    		}
    	}
    
    	// save embedded struct
    	DB.Save(&HNPost{BasePost: BasePost{Title: "news"}})
    	DB.Save(&HNPost{BasePost: BasePost{Title: "hn_news"}})
    	var news HNPost
    	if err := DB.First(&news, "title = ?", "hn_news").Error; err != nil {
    		t.Errorf("no error should happen when query with embedded struct, but got %v", err)
    	} else if news.Title != "hn_news" {
    		t.Errorf("embedded struct's value should be scanned correctly")
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/main/resources/footer.html

                        <li itemprop="name"><a href="/javadoc/" itemprop="url">Javadoc</a></li>
                    </ul>
                </div>
                <div class="site-footer__link-group">
                    <header><strong>News</strong></header>
                    <ul class="site-footer__links-list">
                        <li itemprop="name"><a href="https://blog.gradle.org/" itemprop="url">Blog</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. cmd/license-update.go

    			}
    
    			// Reset the timer for next cycle.
    			licenseUpdateTimer.Reset(licUpdateCycle)
    		}
    	}
    }
    
    func performLicenseUpdate(ctx context.Context, objectAPI ObjectLayer) {
    	// the subnet license renewal api renews the license only
    	// if required e.g. when it is expiring soon
    	url := globalSubnetConfig.BaseURL + licRenewPath
    
    	resp, err := globalSubnetConfig.Post(url, nil)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader_test.go

    	// Set values.
    	ldr.SetSymValue(es2, 7)
    	ldr.SetSymValue(es3, 1)
    	ldr.SetSymValue(es4, 13)
    	ldr.SetSymValue(es5, 101)
    	ldr.SetSymValue(es6, 3)
    
    	// Sort
    	news := ldr.SortSub(es1)
    	if news != es3 {
    		t.Errorf("ldr.SortSub leader got %d wanted %d", news, es3)
    	}
    	pv := int64(-1)
    	count := 0
    	for ss := ldr.SubSym(es1); ss != 0; ss = ldr.SubSym(ss) {
    		v := ldr.SymValue(ss)
    		if v <= pv {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modcmd/vendor.go

    						// We already recorded this replacement.
    						continue
    					}
    					replacementWritten[r.Old] = true
    					rNew := modload.Replacement(r.Old)
    					if rNew == (module.Version{}) {
    						// There is no replacement. Don't try to write it.
    						continue
    					}
    
    					line := moduleLine(r.Old, rNew)
    					buf.WriteString(line)
    					if cfg.BuildV {
    						os.Stderr.WriteString(line)
    					}
    				}
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

    {{- end }}
      * Review the list of actively supported releases, CVE publications and our hardening guide:
        * https://istio.io/latest/docs/releases/supported-releases/
        * https://istio.io/latest/news/security/
        * https://istio.io/latest/docs/ops/best-practices/security/
    
    For further documentation see https://istio.io website
    
    {{-
      $deps := dict
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. README.md

    and work your way through the process that we've outlined.
    
    That said, if you have questions, reach out to us
    [one way or another][communication].
    
    [announcement]: https://cncf.io/news/announcement/2015/07/new-cloud-native-computing-foundation-drive-alignment-among-container
    [Borg]: https://research.google.com/pubs/pub43438.html
    [CNCF]: https://www.cncf.io/about
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/parse.go

    Prefixes:
    	// Start new block inside p.stack[depth].
    	for _, fn := range news {
    		if l, ok := fn(p, s); ok {
    			s = l
    			if s.isBlank() {
    				return
    			}
    			p.lineDepth++
    			goto Prefixes
    		}
    	}
    
    	newPara(p, s)
    }
    
    func (c *rootBuilder) extend(p *parseState, s line) (line, bool) {
    	panic("root extend")
    }
    
    var news = []func(*parseState, line) (line, bool){
    	newQuote,
    	newATXHeading,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. docs/en/docs/help-fastapi.md

    * News about FastAPI and friends 🚀
    * Guides 📝
    * Features ✨
    * Breaking changes 🚨
    * Tips and tricks ✅
    
    ## Follow FastAPI on Twitter
    
    <a href="https://twitter.com/fastapi" class="external-link" target="_blank">Follow @fastapi on **Twitter**</a> to get the latest news about **FastAPI**. 🐦
    
    ## Star **FastAPI** in GitHub
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. manifests/charts/gateway/README.md

    If you have AuthorizationPolicies that reference port these ports, you should update them during this process,
    or customize the ports to match the old defaults.
    See the [security advisory](https://istio.io/latest/news/security/istio-security-2021-002/) for more information.
    
    #### Other migrations
    
    If you see errors like `rendered manifests contain a resource that already exists` during installation, you may need to forcibly take ownership.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top