Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 325 for zonder (0.26 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder.go

    /*
    Copyright 2017 The Kubernetes Authors.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    	if !allowed {
    		l.strictDupMsgs++
    	}
    }
    
    func (l *Loader) NStrictDupMsgs() int { return l.strictDupMsgs }
    
    // Number of total symbols.
    func (l *Loader) NSym() int {
    	return len(l.objSyms)
    }
    
    // Number of defined Go symbols.
    func (l *Loader) NDef() int {
    	return int(l.extStart)
    }
    
    // Number of reachable symbols.
    func (l *Loader) NReachableSym() int {
    	return l.attrReachable.Count()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/loader.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/cc/saved_model/loader.h"
    
    #include <memory>
    #include <string>
    #include <unordered_set>
    #include <utility>
    
    #include "absl/status/status.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/str_join.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/order.go

    		// but it doesn't. So we use the first statement's position instead.
    		ir.SetPos((*n)[0])
    	}
    	var order orderState
    	order.free = free
    	mark := order.markTemp()
    	order.edge()
    	order.stmtList(*n)
    	order.popTemp(mark)
    	*n = order.out
    }
    
    // exprInPlace orders the side effects in *np and
    // leaves them as the init list of the final *np.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/under.go

    // license that can be found in the LICENSE file.
    
    package types2
    
    // under returns the true expanded underlying type.
    // If it doesn't exist, the result is Typ[Invalid].
    // under must only be called when a type is known
    // to be fully set up.
    func under(t Type) Type {
    	if t := asNamed(t); t != nil {
    		return t.under()
    	}
    	return t.Underlying()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 22:34:27 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. src/internal/trace/internal/oldtrace/order.go

    Ian Lance Taylor <******@****.***> 1716410320 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. src/go/types/under.go

    // Source: ../../cmd/compile/internal/types2/under.go
    
    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types
    
    // under returns the true expanded underlying type.
    // If it doesn't exist, the result is Typ[Invalid].
    // under must only be called when a type is known
    // to be fully set up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 22:34:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. src/internal/trace/order.go

    	return fmt.Sprintf("%d (gen=%d)", c.seq, c.gen)
    }
    
    func dumpOrdering(order *ordering) string {
    	var sb strings.Builder
    	for id, state := range order.gStates {
    		fmt.Fprintf(&sb, "G %d [status=%s seq=%s]\n", id, state.status, state.seq)
    	}
    	fmt.Fprintln(&sb)
    	for id, state := range order.pStates {
    		fmt.Fprintf(&sb, "P %d [status=%s seq=%s]\n", id, state.status, state.seq)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. releasenotes/notes/serviceregistry-order.yaml

    Tiger Xu / Zhonghu Xu <******@****.***> 1715754491 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 214 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/javadoc.css

        border: 1px solid var(--table-border-color);
    }
    table.striped {
        border-collapse: collapse;
        border: 1px solid var(--table-border-color);
    }
    table.striped > thead {
        background-color: var(--subnav-background-color);
    }
    table.striped > thead > tr > th, table.striped > thead > tr > td {
        border: 1px solid var(--table-border-color);
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
Back to top